Skip to content

Commit a12d403

Browse files
committedSep 24, 2016
new tools and a cool readme
1 parent 69c37cf commit a12d403

File tree

2 files changed

+46
-4
lines changed

2 files changed

+46
-4
lines changed
 

‎README.md

+41-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,47 @@
11
# QaTools
2-
My QA meta-package for PHP development.
2+
Yet another meta-package for installing PHP Quality Assurance Tools.
33

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

6+
* [phpunit/phpunit](https://phpunit.de/),
7+
* [squizlabs/php_codesniffer](https://github.com/squizlabs/PHP_CodeSniffer),
8+
* [phpmd/phpmd](https://phpmd.org/),
9+
* [theseer/phpdox](http://phpdox.de/),
10+
* [sebastian/phpcpd](https://github.com/sebastianbergmann/phpcpd),
11+
* [phpbench/phpbench](http://phpbench.readthedocs.io/en/latest/),
12+
* [phing/phing](https://www.phing.info/),
13+
* [phploc/phploc](https://github.com/sebastianbergmann/phploc),
14+
* [friendsofphp/php-cs-fixer](http://cs.sensiolabs.org/),
15+
* [sensiolabs/security-checker](https://security.sensiolabs.org/)
16+
17+
[![Build Status](https://travis-ci.org/JamesRezo/QaTools.svg?branch=master)](https://travis-ci.org/JamesRezo/QaTools)
18+
[![Latest Stable Version](https://poser.pugx.org/jamesrezo/qatools/v/stable)](https://packagist.org/packages/jamesrezo/qatools)
19+
[![Latest Unstable Version](https://poser.pugx.org/jamesrezo/qatools/v/unstable)](https://packagist.org/packages/jamesrezo/qatools)
20+
[![License](https://poser.pugx.org/jamesrezo/qatools/license)](https://packagist.org/packages/jamesrezo/qatools)
21+
[![composer.lock](https://poser.pugx.org/jamesrezo/qatools/composerlock)](https://packagist.org/packages/jamesrezo/qatools)
22+
23+
## Installation & Usage
24+
25+
In your project :
626
```
727
composer require --dev jamesrezo/qatools
828
```
29+
30+
Then all tools will be available under `vendor/bin/` directory path.
31+
32+
Or globally :
33+
```
34+
composer global require jamesrezo/qatools
35+
```
36+
37+
```
38+
export PATH=~/.composer/vendor/bin:$PATH
39+
```
40+
41+
## Contributing
42+
43+
Everyone is welcome :-)
44+
45+
## Licence
46+
47+
MIT

‎composer.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,16 @@
1212
"nikic/php-parser": "^1.3 || 3.*@beta",
1313
"phpbench/phpbench": "^0.10 || ^0.12.0",
1414
"phing/phing": "^2.15",
15-
"phploc/phploc": "^2.1 || ^3.0"
15+
"phploc/phploc": "^2.1 || ^3.0",
16+
"friendsofphp/php-cs-fixer": "^1.12",
17+
"sensiolabs/security-checker": "^4.0"
1618
},
1719
"license": "MIT",
1820
"authors": [
1921
{
2022
"name": "James",
2123
"email": "james@rezo.net"
2224
}
23-
]
25+
],
26+
"keywords": ["php", "qa", "tools"]
2427
}

0 commit comments

Comments
 (0)