forked from phingofficial/phing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
148 lines (148 loc) · 4.97 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"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", "php", "build-tool", "build-automation", "ant", "make"],
"homepage": "https://www.phing.info/",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Michiel Rook",
"email": "[email protected]"
},
{
"name": "Phing Community",
"homepage": "https://github.com/phingofficial/phing/blob/main/CREDITS.md"
}
],
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/michielrook"
},
{
"type": "github",
"url": "https://github.com/sponsors/mrook"
},
{
"type": "github",
"url": "https://github.com/sponsors/siad007"
}
],
"support": {
"issues": "https://github.com/phingofficial/phing/issues",
"source": "https://github.com/phingofficial/phing/",
"irc": "irc://irc.freenode.net/phing",
"chat": "https://phing.slack.com/",
"docs": "https://www.phing.info/docs/guide/stable/"
},
"config": {
"platform": {
"php": "7.3.15"
},
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phing/phing-composer-configurator": true
}
},
"require": {
"php": "^7.3 || ^7.4 || ^8.0 || ^8.1",
"ext-dom": "*",
"ext-json": "*",
"ext-xml": "*",
"mehr-als-nix/parallel": "^v1.0",
"phing/phing-composer-configurator": "dev-master",
"phing/task-analyzers": "dev-main",
"phing/task-apigen": "dev-main",
"phing/task-archives": "dev-main",
"phing/task-aws": "dev-main",
"phing/task-coverage": "dev-main",
"phing/task-dbdeploy": "dev-main",
"phing/task-ftpdeploy": "dev-main",
"phing/task-git": "dev-main",
"phing/task-hg": "dev-main",
"phing/task-http": "dev-main",
"phing/task-inifile": "dev-main",
"phing/task-ioncube": "dev-main",
"phing/task-jshint": "dev-main",
"phing/task-jsmin": "dev-main",
"phing/task-liquibase": "dev-main",
"phing/task-phkpackage": "dev-main",
"phing/task-phpdoc": "dev-main",
"phing/task-phpunit": "dev-main",
"phing/task-sass": "dev-main",
"phing/task-smarty": "dev-main",
"phing/task-ssh": "dev-main",
"phing/task-svn": "dev-main",
"phing/task-visualizer": "dev-main",
"phing/task-zendcodeanalyser": "dev-main",
"phing/task-zendserverdevelopmenttools": "dev-main",
"sebastian/version": "^3.0",
"symfony/console": "^5.0|^6.0",
"symfony/yaml": "^5.0|^6.0"
},
"require-dev": {
"ext-curl": "*",
"ext-iconv": "*",
"ext-openssl": "*",
"ext-pdo_sqlite": "*",
"ext-phar": "*",
"ext-simplexml": "*",
"ext-sockets": "*",
"ext-xsl": "*",
"ext-zip": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/guzzle": "^7.1",
"jawira/plantuml-encoding": "^1.0",
"mikey179/vfsstream": "2.0.x-dev",
"monolog/monolog": "^2.2",
"pear/console_getopt": "^v1.4.3",
"pear/mail": "^1.4",
"pear/mail_mime": "^1.10",
"pear/net_growl": "dev-master",
"pear/pear-core-minimal": "^1.10.10",
"pear/pear_exception": "^v1.0.2",
"pear/versioncontrol_git": "dev-master",
"phpunit/phpunit": "^9.5.10",
"roave/security-advisories": "dev-master",
"scssphp/scssphp": "~1.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/config": "^5.2|^6.0",
"symfony/dependency-injection": "^5.2|^6.0",
"symfony/stopwatch": "^5.2|^6.0"
},
"autoload": {
"psr-4": {
"Phing\\": "src/Phing"
}
},
"autoload-dev": {
"psr-4": {
"Phing\\Test\\": "tests/Phing"
}
},
"bin": [
"bin/phing"
],
"extra": {
"branch-alias": {
"dev-main": "3.0.x-dev"
}
},
"suggest": {
"ext-gettext": "*",
"ext-posix": "*",
"ext-sockets": "*",
"ext-tidy": "*",
"phpdocumentor/phpdocumentor": "Documentation Generator for PHP",
"phpunit/phpunit": "The PHP Unit Testing Framework",
"phpunit/php-code-coverage": "Library that provides collection, processing, and rendering functionality for PHP code coverage information",
"tedivm/jshrink": "Javascript Minifier built in PHP",
"symfony/stopwatch": "Needed by the StopwatchTask",
"scssphp/scssphp": "A compiler for SCSS written in PHP, used by SassTask",
"jawira/plantuml-encoding": "Required by VisualizerTask",
"monolog/monolog": "Required by the MonologListener"
},
"minimum-stability": "stable",
"prefer-stable": true
}