crazyfactory / php-package-boilerplate

0 stars 0 forks source link

PHP Package Boilerplate Build Status

Use this project as a starting point for PHP packages.

Requirements

Startup Steps

rm -rf .git
git init
git add .
git commit -m "feat(All): Start"
git remote add origin <github-uri>
git push -u --force origin master

Scripts

Run Tests

composer test

Run Tests with code coverage

composer test:coverage

Lint

composer lint

Run linting with auto-fix

composer lint:fix