- New composer package was created with the following command:
composer init
- phpunit was added as a dev dependency:
composer require --dev phpunit/phpunit
- The package was installed with the following command:
composer install
- The package production dependencies were installed with the following command:
composer install --no-dev
##Quote of the day: Whenever you are tempted to type something into a print statement or a debugger expression, write it as a test instead.