forked from tommy-muehle/tooly-composer-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.02 KB
/
composer.json
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
{
"name": "tm/tooly-composer-script",
"description": "Simple composer script to manage phar files.",
"keywords": [
"composer",
"composer-script",
"phar-management",
"composer-phar",
"phar",
"phar-handling",
"gpg-verification"
],
"homepage": "https://github.com/tommy-muehle/tooly-composer-script",
"authors": [
{
"name": "Tommy Muehle",
"email": "[email protected]",
"homepage": "https://tommy-muehle.de"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/tommy-muehle/tooly-composer-script/issues",
"docs": "https://github.com/tommy-muehle/tooly-composer-script/blob/master/README.md",
"source": "https://github.com/tommy-muehle/tooly-composer-script/tree/master"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Tooly\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tooly\\": "src/",
"Tooly\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6.0"
},
"suggest": {
"tm/gpg-verifier": "Allows verification over GPG for PHAR tools."
},
"require-dev": {
"composer/composer": "1.*",
"mikey179/vfsstream": "1.6.*",
"tm/gpg-verifier": "1.*",
"php-mock/php-mock-phpunit": "1.1.*",
"codeclimate/php-test-reporter": "dev-master"
},
"scripts": {
"post-install-cmd": "Tooly\\ScriptHandler::installPharTools",
"post-update-cmd": "Tooly\\ScriptHandler::installPharTools"
},
"extra": {
"tools": {
"phpunit": {
"url": "https://phar.phpunit.de/phpunit-5.5.0.phar"
},
"phpcpd": {
"url": "https://phar.phpunit.de/phpcpd-2.0.4.phar"
},
"phpcs": {
"url": "https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar",
"force-replace": true
},
"phpmd": {
"url": "http://static.phpmd.org/php/latest/phpmd.phar",
"force-replace": true
},
"security-checker": {
"url": "http://get.sensiolabs.org/security-checker.phar",
"force-replace": true
}
}
}
}