-
Notifications
You must be signed in to change notification settings - Fork 70
/
composer.json
38 lines (38 loc) · 968 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": "philippbaschke/acf-pro-installer",
"description": "An install helper for Advanced Custom Fields PRO",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Philipp Baschke",
"email": "[email protected]"
}
],
"keywords": [
"wordpress", "composer", "wp", "plugin", "acf", "env", "pro"
],
"require": {
"php": ">=5.5",
"composer-plugin-api": "^1.0",
"vlucas/phpdotenv": "^2.2"
},
"require-dev": {
"composer/composer": "1.0.*",
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "2.*",
"satooshi/php-coveralls": "1.*"
},
"autoload": {
"psr-4": { "PhilippBaschke\\ACFProInstaller\\": "src/ACFProInstaller" }
},
"extra": {
"class": "PhilippBaschke\\ACFProInstaller\\Plugin"
},
"scripts": {
"lint": "phpcs src tests --standard=PSR2",
"test": "phpunit",
"coverage": "phpunit --coverage-html coverage",
"coveralls": "coveralls"
}
}