codelegance / grumphp
A composer plugin that enables source code quality checks.
Installs: 6 453
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 367
Type:composer-plugin
Requires
- php: >=5.6.0
- composer-plugin-api: ~1.0
- composer/composer: ^1.0
- doctrine/collections: ~1.2
- gitonomy/gitlib: ~1.0
- monolog/monolog: ~1.17
- ocramius/proxy-manager: ~0.4|~1.0|~2.0
- seld/jsonlint: ~1.1
- symfony/config: ~2.7|~3.0
- symfony/console: ~2.7|~3.0
- symfony/dependency-injection: ~2.7|~3.0
- symfony/event-dispatcher: ~2.7|~3.0
- symfony/filesystem: ~2.7|~3.0
- symfony/finder: ~2.7|~3.0
- symfony/options-resolver: ~2.7|~3.0
- symfony/process: ~2.7|~3.0
- symfony/proxy-manager-bridge: ~2.7|~3.0
- symfony/yaml: ~2.7|~3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ~1|~2
- jakub-onderka/php-parallel-lint: ^0.9.2
- nikic/php-parser: ~2.1
- phpspec/phpspec: ^3.2.2
- phpspec/prophecy: ^1.6.2
- phpunit/phpunit: ^4.8.31
- sebastian/comparator: ^1.2.4
- sensiolabs/security-checker: ^3.0
- squizlabs/php_codesniffer: ~2.3
Suggests
- atoum/atoum: Lets GrumPHP run your unit tests.
- behat/behat: Lets GrumPHP validate your project features.
- codeception/codeception: Lets GrumPHP run your project's full stack tests
- codegyre/robo: Lets GrumPHP run your automated PHP tasks.
- doctrine/orm: Lets GrumPHP validate your Doctrine mapping files.
- friendsofphp/php-cs-fixer: Lets GrumPHP automatically fix your codestyle.
- jakub-onderka/php-parallel-lint: Lets GrumPHP quickly lint your entire code base.
- malukenho/kawaii-gherkin: Lets GrumPHP lint your Gherkin files.
- nikic/php-parser: Lets GrumPHP run static analyses through your PHP files.
- phing/phing: Lets GrumPHP run your automated PHP tasks.
- phpmd/phpmd: Lets GrumPHP sort out the mess in your code
- phpspec/phpspec: Lets GrumPHP spec your code.
- phpunit/phpunit: Lets GrumPHP run your unit tests.
- roave/security-advisories: Lets GrumPHP be sure that there are no known security issues.
- sebastian/phpcpd: Lets GrumPHP find duplicated code.
- sensiolabs/security-checker: Lets GrumPHP be sure that there are no known security issues.
- squizlabs/php_codesniffer: Lets GrumPHP sniff on your code.
- sstalle/php7cc: Lets GrumPHP check PHP 5.3 - 5.6 code compatibility with PHP 7.
This package is auto-updated.
Last update: 2021-08-18 14:15:24 UTC
README
GrumPHP
Sick and tired of defending code quality over and over again? GrumPHP will do it for you! This composer plugin will register some git hooks in your package repository. When somebody commits changes, GrumPHP will run some tests on the committed code. If the tests fail, you won't be able to commit your changes. This handy tool will not only improve your codebase, it will also teach your co-workers to write better code following the best practices you've determined as a team.
GrumPHP has a set of common tasks built-in. You will be able to use GrumPHP with a minimum of configuration.
We don't want to bore you with all the details, so quick: install it yourself and unleash the power of GrumPHP!
Demo
Installation
If you are trying to install GrumPHP on Windows: please read the windows pre-install section.
This package is a composer plugin and should be installed to your project's dev dependency using composer:
composer require --dev phpro/grumphp
When the package is installed, GrumPHP will attach itself to the git hooks of your project. You will see following message in the composer logs:
Watch out! GrumPHP is sniffing your commits!
To make GrumPHP even more awesome, it will suggest installing some extra packages:
- atoum/atoum : ~2.7
- behat/behat : ~3.0
- codegyre/robo : ~0.7
- doctrine/orm: ~2.5
- friendsofphp/php-cs-fixer : ~1|~2
- malukenho/kawaii-gherkin : ~0.1
- phing/phing : ~2.0
- sstalle/php7cc : ~1.1
- phpspec/phpspec : ~2.1
- phpunit/phpunit : ~4.5
- roave/security-advisories : dev-master@dev
- sebastian/phpcpd : ~2.0
- squizlabs/php_codesniffer : ~2.3
- codeception/codeception : ~2.1
- sensiolabs/security-checker : ~3.0
- phpmd/phpmd : ~2.4
- nikic/php-parser: ~2.1
- kahlan/kahlan: ~3
GrumPHP will never push you into using a specific task. You can choose the tasks that fit your needs, and activate or deactivate any task in no time!
Having trouble installing GrumPHP? Find out how to:
Configuration
Some things in GrumPHP can be configured in a grumphp.yml
or grumphp.yml.dist
file in the root of your project (the directory where you run the grumphp command).
You can specify a custom config filename and location in composer.json
or in the --config
option of the console commands.
# grumphp.yml parameters: bin_dir: "./vendor/bin" git_dir: "." hooks_dir: ~ hooks_preset: local stop_on_failure: false ignore_unstaged_changes: false process_async_limit: 10 process_async_wait: 1000 process_timeout: 60 ascii: failed: grumphp-grumpy.txt succeeded: grumphp-happy.txt tasks: ant: ~ atoum: ~ behat: ~ brunch: ~ clover_coverage: ~ codeception: ~ composer: ~ composer_script: ~ doctrine_orm: ~ gherkin: ~ git_blacklist: ~ git_commit_message: ~ git_conflict: ~ grunt: ~ gulp: ~ jsonlint: ~ kahlan: ~ npm_script: ~ phing: ~ php7cc: ~ phpcpd: ~ phpcs: ~ phpcsfixer: ~ phpcsfixer2: ~ phplint: ~ phpmd: ~ phpparser: ~ phpspec: ~ phpunit: ~ phpversion: ~ robo: ~ securitychecker: ~ shell: ~ xmllint: ~ yamllint: ~ testsuites: [] extensions: []
You can find a detailed overview of the configurable options in these sections:
Commands
Since GrumPHP is just a CLI tool, these commands can be triggered:
Compatibility
GrumPHP works with PHP 5.4 or above, and is also tested to work with HHVM.
This package has been tested with following git clients:
- CLI Unix
- CLI Mac
- CLI Windows
- PhpStorm Git
- Atlassian SourceTree
- Syntevo SmartGit
Roadmap
Lots of tasks are already available to make sure your team writes great code. There are still 1 major parts that are missing before we can release a v1.0.0:
We are always looking to support new tasks. Feel free to log an issue or create a pull request for a task we forgot.
Are you missing a feature or did you find a bug? Log it in the issue tracker! Want to help out? Feel free to contact us!
Build your own conventions checker
You can see an example of how to build your own conventions checker.
Solving issues
About
Submitting bugs and feature requests
Bugs and feature request are tracked on GitHub. Please take a look at our rules before contributing your code.
License
GrumPHP is licensed under the MIT License - see the LICENSE file for details.