forked from aaemnnosttv/wp-cli-dotenv-command
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.09 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
{
"name": "amphibee/wp-cli-dotenv-command",
"description": "Dotenv commands for WP-CLI",
"type": "wp-cli-package",
"homepage": "https://amphibee.fr",
"license": "MIT",
"authors": [
{
"name": "Olivier Gorzalka",
"email": "[email protected]",
"homepage": "https://aaemnnost.tv"
},
{
"name": "Evan Mattson",
"email": "[email protected]",
"homepage": "https://aaemnnost.tv"
}
],
"scripts": {
"test": [
"phpunit",
"behat"
],
"phpunit": "phpunit",
"behat": "behat"
},
"require": {
"php": "^8.0|^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9|^10",
"wp-cli/wp-cli-tests": "^3.2"
},
"autoload": {
"psr-4": {"WP_CLI_Dotenv\\": "src/"},
"files": ["command.php"]
},
"autoload-dev": {
"classmap": ["tests/Fixtures.php"],
"psr-4": {
"WP_CLI_Dotenv\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}