-
Notifications
You must be signed in to change notification settings - Fork 49
/
composer.json
47 lines (47 loc) · 899 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
39
40
41
42
43
44
45
46
47
{
"name": "johnpbloch/wordpress-core-installer",
"description": "A custom installer to handle deploying WordPress with composer",
"keywords": [
"wordpress"
],
"type": "composer-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "John P. Bloch",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"johnpbloch\\Composer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\JohnPBloch\\Composer\\": "tests/"
}
},
"extra": {
"class": "johnpbloch\\Composer\\WordPressCorePlugin"
},
"require": {
"composer-plugin-api": "^1.0 || ^2.0",
"php": ">=5.6.0"
},
"require-dev": {
"composer/composer": "^1.0 || ^2.0",
"phpunit/phpunit": ">=5.7.27"
},
"conflict": {
"composer/installers": "<1.0.6"
},
"scripts": {
"test:phpunit": "phpunit",
"test": [
"@test:phpunit"
]
}
}