-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
53 lines (53 loc) · 1.15 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
{
"name": "vasek-purchart/phing-symfony-command-task",
"description": "This Phing task allows you to call commands from a Symfony Console Application comfortably.",
"keywords": ["phing", "task", "symfony", "command", "console"],
"license": "MIT",
"authors": [
{
"name": "Vašek Purchart",
"email": "[email protected]",
"homepage": "http://vasekpurchart.cz"
}
],
"require": {
"php": "^7.2",
"phing/phing": "^2.16"
},
"require-dev": {
"consistence/coding-standard": "3.10.1",
"php-parallel-lint/php-console-highlighter": "1.0",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"phpunit/phpunit": "8.5.25",
"symfony/console": "^4.0|^5.0",
"symfony/debug": "^4.0",
"vasek-purchart/phing-tester": "2.1",
"shipmonk/composer-dependency-analyser": "1.8.1"
},
"autoload": {
"psr-4": {
"VasekPurchart\\Phing\\SymfonyCommand\\": [
"src"
]
},
"classmap": [
"src"
]
},
"autoload-dev": {
"psr-4": {
"VasekPurchart\\Phing\\SymfonyCommand\\": [
"tests"
]
},
"classmap": [
"tests"
]
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}