This is a template. To use it, clone this repository or select "Use this template" from github.com/elliotjreed/php-package-template and run:
bash ./setup.sh
The following instructions and information are related to the project after the setup script has been run (they will throw errors if run before the setup has been run).
PHP 8.1 or above and Composer is expected to be installed.
For instructions on how to install Composer visit getcomposer.org.
After cloning this repository, change into the newly created directory and run:
composer install
or if you have installed Composer locally in your current directory:
php composer.phar install
This will install all dependencies needed for the project.
Henceforth, the rest of this README will assume composer
is installed globally (ie. if you are using composer.phar
you will need to use composer.phar
instead of composer
in your terminal / command-line).
Unit testing in this project is via PHPUnit.
All unit tests can be run by executing:
composer phpunit
To have PHPUnit stop and report on the first failing test encountered, run:
composer phpunit:debug
A standard for code style can be important when working in teams, as it means that less time is spent by developers processing what they are reading (as everything will be consistent).
Code formatting is automated via PHP-CS-Fixer. PHP-CS-Fixer will not format line lengths which do form part of the PSR-2 coding standards so these will product warnings when checked by PHP Code Sniffer.
These can be run by executing:
composer phpcs
All of the tests can be run by executing:
composer test
Checking for outdated Composer dependencies can be performed by executing:
composer outdated
Checking that the composer.json is valid can be performed by executing:
composer validate --no-check-publish
If GNU Make is installed, you can replace the above composer
command prefixes with make
.
All of the tests can be run by executing:
make test
Specific output formats better suited to CI platforms are included as Composer scripts.
To output unit test coverage in text and Clover XML format (which can be used for services such as Coveralls):
composer phpunit:ci
To output PHP-CS-Fixer (dry run) and PHPCS results in checkstyle format (which GitHub Actions will use to output a readable format):
composer phpcs:ci
Look at the example in .github/workflows/main.yml.
This project is licensed under the MIT License - see the LICENCE.md file for details.