forked from nlemoine/wp-cli-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.14 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
{
"name": "hellonico/wp-cli-fixtures",
"type": "wp-cli-package",
"description": "Easily generate fake data for WordPress",
"homepage": "https://github.com/nlemoine/wp-cli-fixtures",
"license": "GPL-3.0+",
"authors": [
{
"name": "Nicolas Lemoine",
"email": "[email protected]",
"homepage": "https://github.com/nlemoine"
}
],
"require": {
"php": ">=7.3",
"fakerphp/faker": "^1.13",
"nelmio/alice": "^3.8",
"wp-cli/wp-cli": "^2.4"
},
"require-dev": {
"wp-cli/wp-cli-tests": "^3.0.9",
"wp-cli/entity-command": "^2.0",
"wp-cli/db-command": "^2.0"
},
"config": {
"process-timeout": 1800
},
"autoload": {
"psr-4": {
"Hellonico\\Fixtures\\": "src/"
},
"files": [
"command.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"behat": "run-behat-tests",
"behat-rerun": "rerun-behat-tests",
"lint": "run-linter-tests",
"phpcs": "run-phpcs-tests",
"phpunit": "run-php-unit-tests",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpcs",
"@phpunit",
"@behat"
]
}
}