forked from phingofficial/phing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 3.26 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
79
80
81
82
83
84
85
86
87
88
89
{
"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-only",
"authors": [
{
"name": "Michiel Rook",
"email": "mrook@php.net"
},
{
"name": "Phing Community",
"homepage": "https://github.com/phingofficial/phing/blob/master/CREDITS.md"
}
],
"support": {
"issues": "https://github.com/phingofficial/phing/issues",
"source": "https://github.com/phingofficial/phing/",
"irc": "irc://irc.freenode.net/phing",
"slack": "https://www.phing.info/slack",
"docs": "https://www.phing.info/docs/guide/stable/"
},
"require": {
"php": ">=7.1",
"sebastian/version": "^2.0",
"symfony/console": "^2.8 || ^3.0 || ^4.0",
"symfony/yaml": "^2.8 || ^3.1 || ^4.0",
"mehr-als-nix/parallel": "^v1.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"pear/archive_tar": "1.4.x",
"pear/http_request2": "dev-trunk",
"pear/net_growl": "dev-trunk",
"pear/pear-core-minimal": "1.10.6",
"pear/versioncontrol_git": "@dev",
"pear/versioncontrol_svn": "~0.5",
"pdepend/pdepend": "2.x",
"phpdocumentor/phpdocumentor": "2.x",
"phploc/phploc": "^4.0",
"phpmd/phpmd": "~2.2",
"phpunit/phpunit": "^7.3",
"siad007/versioncontrol_hg": "^1.0",
"sebastian/phpcpd": "^4.1",
"squizlabs/php_codesniffer": "~2.2",
"mikey179/vfsStream": "^1.6",
"aws/aws-sdk-php": "^3.32"
},
"autoload": {
"classmap": [
"classes/phing/"
]
},
"autoload-dev": {
"classmap": [
"test/classes/"
]
},
"include-path": ["classes"],
"bin": [
"bin/phing"
],
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.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",
"siad007/versioncontrol_hg": "A library for interfacing with Mercurial repositories.",
"tedivm/jshrink": "Javascript Minifier built in PHP",
"symfony/stopwatch": "Needed by the StopwatchTask",
"aws/aws-sdk-php": "AWS SDK used by S3*Tasks",
"leafo/scssphp": "A compiler for SCSS written in PHP, used by SassTask"
}
}