-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 824 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 824 Bytes
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
{
"name": "continuousphp/phing-tasks",
"homepage": "https://github.com/continuousphp/phing-tasks",
"description": "Phing tasks for continuousphp",
"type": "library",
"keywords": ["build", "tool", "task", "phing", "continuousphp"],
"license": "Apache-2.0",
"authors": [
{
"name": "Frederic Dewinne",
"email": "frederic@continuousphp.com"
}
],
"require-dev": {
"phpunit/phpunit": "^4.6",
"squizlabs/php_codesniffer": "^2.3",
"behat/behat": "^3.0"
},
"require": {
"php": ">=5.4.0",
"phing/phing": "~2.9",
"continuousphp/sdk": "~0.2"
},
"autoload": {
"psr-4": {
"Continuous\\Task\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Continuous\\Tests\\Task\\": "tests/",
"Continuous\\Features\\": "features/bootstrap/"
}
}
}