-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.01 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": "pressoid/wp-seeder",
"description": "A library for seeding your WordPress database with dummy data",
"keywords": ["seed", "seeding", "database", "wordpress"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jędrzej Chałubek",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"fakerphp/faker": "^1.13.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"brain/monkey": "^2.6.0",
"squizlabs/php_codesniffer": "^3.3.1",
"wp-coding-standards/wpcs": "^2.3.0"
},
"autoload": {
"psr-4": {
"WP_Seeder\\": "src/WP_Seeder"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"post-update-cmd": [
"phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
],
"test": [
"phpunit tests"
],
"lint": [
"phpcs --standard=.phpcs.xml ./"
],
"format": [
"phpcbf --standard=.phpcs.xml ./"
]
}
}