-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 933 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 933 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
36
37
38
39
40
{
"name": "ndigitals/wc-phpunit-build",
"description": "The project for building and maintaining the wc-phpunit package.",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Tim Nolte",
"email": "tim.nolte@ndigitals.com"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Build\\": "src"
}
},
"scripts": {
"clean": "rm -rf build/* repos/package repos/wordpress",
"build": "bin/build"
},
"require": {
"comodojo/zip": "^3.1",
"composer/semver": "^3.3",
"illuminate/container": "^8.83",
"illuminate/support": "^8.83",
"kzykhys/git": "^0.1.2",
"monolog/monolog": "^1.0",
"symfony/filesystem": "^5.4",
"symfony/finder": "^5.4",
"symfony/options-resolver": "^5.4",
"symfony/process": "^5.4"
},
"require-dev": {
"symfony/var-dumper": "^5.4"
}
}