forked from phpro/grumphp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 3.27 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "codelegance/grumphp",
"description": "A composer plugin that enables source code quality checks.",
"type": "composer-plugin",
"license": "MIT",
"require": {
"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"
},
"require-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"
},
"suggest": {
"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."
},
"authors": [
{
"name": "Alexander Deruwe",
"email": "alexander.deruwe@phpro.be"
},
{
"name": "Toon Verwerft",
"email": "toon.verwerft@phpro.be"
}
],
"config": {
"sort-packages": true
},
"extra": {
"class": "GrumPHP\\Composer\\GrumPHPPlugin"
},
"autoload": {
"psr-4": {
"GrumPHP\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GrumPHPTest\\": "test"
}
},
"bin": ["bin/grumphp"]
}