I am working on a lib for composer/packagist.
While working on the PHP classes,I am parallely writing the tests for the method, to check if everything works well.
file tree:
├── composer.json ├── composer.lock ├── README.md ├── src │ └── Resizer.php ├── tests │ └── ResizerTests.php └── vendor └── PHPUnit etc... composer.json:
{ "name": "eschmid1972/image-resizer", "description": "Library for resizing images with custom options", "keywords": [ "php", "image", "imagemagick", "resize" ], "license": "BSD-3" ], "require": {}, "require-dev": { "phpunit/phpunit": "~4.0" } } What do I need to do, so I can run the tests with the command phpunit in the project root?