Skip to content

Commit

Permalink
new tools and a cool readme
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesRezo committed Sep 24, 2016
1 parent 69c37cf commit a12d403
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 4 deletions.
43 changes: 41 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,47 @@
# QaTools
My QA meta-package for PHP development.
Yet another meta-package for installing PHP Quality Assurance Tools.

## Installation
This one provides a collection of very known tools from PHP 5.4 to PHP 7.0 :

* [phpunit/phpunit](https://phpunit.de/),
* [squizlabs/php_codesniffer](https://github.com/squizlabs/PHP_CodeSniffer),
* [phpmd/phpmd](https://phpmd.org/),
* [theseer/phpdox](http://phpdox.de/),
* [sebastian/phpcpd](https://github.com/sebastianbergmann/phpcpd),
* [phpbench/phpbench](http://phpbench.readthedocs.io/en/latest/),
* [phing/phing](https://www.phing.info/),
* [phploc/phploc](https://github.com/sebastianbergmann/phploc),
* [friendsofphp/php-cs-fixer](http://cs.sensiolabs.org/),
* [sensiolabs/security-checker](https://security.sensiolabs.org/)

[![Build Status](https://travis-ci.org/JamesRezo/QaTools.svg?branch=master)](https://travis-ci.org/JamesRezo/QaTools)
[![Latest Stable Version](https://poser.pugx.org/jamesrezo/qatools/v/stable)](https://packagist.org/packages/jamesrezo/qatools)
[![Latest Unstable Version](https://poser.pugx.org/jamesrezo/qatools/v/unstable)](https://packagist.org/packages/jamesrezo/qatools)
[![License](https://poser.pugx.org/jamesrezo/qatools/license)](https://packagist.org/packages/jamesrezo/qatools)
[![composer.lock](https://poser.pugx.org/jamesrezo/qatools/composerlock)](https://packagist.org/packages/jamesrezo/qatools)

## Installation & Usage

In your project :
```
composer require --dev jamesrezo/qatools
```

Then all tools will be available under `vendor/bin/` directory path.

Or globally :
```
composer global require jamesrezo/qatools
```

```
export PATH=~/.composer/vendor/bin:$PATH
```

## Contributing

Everyone is welcome :-)

## Licence

MIT
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@
"nikic/php-parser": "^1.3 || 3.*@beta",
"phpbench/phpbench": "^0.10 || ^0.12.0",
"phing/phing": "^2.15",
"phploc/phploc": "^2.1 || ^3.0"
"phploc/phploc": "^2.1 || ^3.0",
"friendsofphp/php-cs-fixer": "^1.12",
"sensiolabs/security-checker": "^4.0"
},
"license": "MIT",
"authors": [
{
"name": "James",
"email": "[email protected]"
}
]
],
"keywords": ["php", "qa", "tools"]
}

0 comments on commit a12d403

Please sign in to comment.