-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 953 Bytes
/
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
{
"name": "agxmeister/wp-seed",
"authors": [
{
"name": "agxmeister",
"email": "[email protected]"
}
],
"require": {
"ext-curl": "*",
"ext-zip": "*",
"ext-mysqli": "*",
"minicli/minicli": "^4.2",
"php-di/php-di": "^7.0",
"monolog/monolog": "^3.7",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"codeception/codeception": "^5.1",
"codeception/module-asserts": "*",
"codeception/module-cli": "^2.0"
},
"autoload": {
"psr-4": {
"Seed\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "docker-compose run -e TEST=true --rm php codecept run",
"test-ext": "docker-compose run --rm php codecept run",
"post-install-cmd": "php ./bin/seed utils install-wp-cli"
}
}