-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.02 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
{
"name": "wp-phpunit/wp-phpunit-build",
"description": "The project for building and maintaining the wp-phpunit package.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Evan Mattson",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Build\\": "src"
}
},
"require": {
"comodojo/zip": "^2.1",
"composer/semver": "^1.4",
"illuminate/container": "5.5.*",
"illuminate/support": "5.5.*",
"kzykhys/git": "^0.1.2",
"monolog/monolog": "^1.23",
"symfony/filesystem": "^3.3",
"symfony/finder": "^3.3",
"symfony/options-resolver": "^2.8",
"symfony/process": "^3.3"
},
"require-dev": {
"symfony/var-dumper": "^3.3"
},
"scripts": {
"clean": "rm -rf build/* repos/package repos/wordpress",
"build": "bin/build"
}
}