bitandblack / composer-helper
Some additional composer functions
0.4.1
2020-11-24 09:45 UTC
Requires
- php: >=7.2
Requires (Dev)
- phpstan/phpstan: ^0.12
- phpunit/phpunit: ^8.0 || ^9.0
README
Composer Helper
This library provides useful functions for Composer.
Installation
This library is made for the use with Composer. Add it to your project by running $ composer require bitandblack/composer-helper
.
Usage
Path to vendor folder
Get the path to your vendor folder by calling:
<?php
use BitAndBlack\Composer\VendorPath;
$vendorFolder = (string) new VendorPath();
This works also when your vendor folder has a different name.
Class existence
Check if a class exists by calling Composer::classExists()
. This is a replacement for class_exists()
which may not work with Composer.
Help
If you have any questions feel free to contact us under hello@bitandblack.com
.