forked from phingofficial/phing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.65 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": "phing/phing",
"description": "PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant.",
"keywords": ["build", "tool", "task", "phing"],
"homepage": "https://www.phing.info/",
"license": "LGPL-3.0",
"authors": [
{
"name": "Michiel Rook",
"email": "[email protected]"
},
{
"name": "Phing Community",
"homepage": "https://www.phing.info/trac/wiki/Development/Contributors"
}
],
"support": {
"issues": "https://www.phing.info/trac/report",
"irc": "irc://irc.freenode.net/phing"
},
"require": {
"php": ">=5.2.0"
},
"repositories": [
{
"type": "pear",
"url": "http://pear.php.net"
}
],
"minimum-stability": "beta",
"require-dev": {
"phpunit/phpunit": ">=3.7",
"phpdocumentor/phpdocumentor": "2.x",
"phploc/phploc": "2.x",
"sebastian/phpcpd": "2.x",
"pear/pear_exception": "~1.0",
"pear/versioncontrol_svn": "~0.5",
"pear/versioncontrol_git": "@dev",
"pdepend/pdepend": "2.x",
"pear-pear.php.net/HTTP_Request2": "2.2.x",
"pear-pear.php.net/Net_Growl": "2.7.x",
"pear-pear.php.net/PEAR_PackageFileManager": "1.7.x",
"pear-pear.php.net/PEAR_PackageFileManager2": "1.0.x",
"pear-pear.php.net/XML_Serializer": "0.20.x",
"squizlabs/php_codesniffer": "~2.2",
"lastcraft/simpletest": "@dev",
"ext-pdo_sqlite": "*",
"phpmd/phpmd": "~2.2"
},
"autoload": {
"classmap": ["classes/phing/"]
},
"include-path": ["classes"],
"bin": [
"bin/phing"
],
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "2.11.x-dev"
}
},
"suggest": {
"phpdocumentor/phpdocumentor": "Documentation Generator for PHP",
"sebastian/phpcpd": "Copy/Paste Detector (CPD) for PHP code",
"phpmd/phpmd": "PHP version of PMD tool",
"pdepend/pdepend": "PHP version of JDepend",
"phploc/phploc": "A tool for quickly measuring the size of a PHP project",
"phpunit/phpunit": "The PHP Unit Testing Framework",
"phpunit/php-code-coverage": "Library that provides collection, processing, and rendering functionality for PHP code coverage information",
"pear/versioncontrol_svn": "A simple OO-style interface for Subversion, the free/open-source version control system",
"pear/versioncontrol_git": "A library that provides OO interface to handle Git repository",
"pear/archive_tar": "Tar file management class",
"tedivm/jshrink": "Javascript Minifier built in PHP"
}
}