greeny / package-template
Core files of any PHP package for easy setup
Requires (Dev)
- consistence/coding-standard: ^0.13.0
- jakub-onderka/php-console-highlighter: ^0.3.2
- jakub-onderka/php-parallel-lint: ^0.9.2
- nette/tester: ^1.7
- phpstan/phpstan: ^0.6.4
- slevomat/coding-standard: ^2.0
This package is auto-updated.
Last update: 2024-11-10 19:37:27 UTC
README
This is a template for PHP library. It features pre-installed libraries:
- nette/tester
- slevomat/coding-standard
- consistence/coding-standard
- jakub-onderka/php-parallel-lint
- phpstan/phpstan
It also has .travis.yml file for fast setup.
Made for PHP 7.1 and tested on it, may work on earlier versions with some modifications to enabled Sniffs and PHPStan tests.
Starting new package
-
create project
composer create-project greeny/package-template YourAwesomeProjectName
-
change composer.json to provide correct information about your package / vendor name, autoloading settings, description and author
-
write code to src folder
-
test your code using
composer build
-
setup travis integration (enable travis testing for your repository, there is already .travis.yml file present)
-
profit
Feel free to use this and/or suggest changes. I am open to anything.