-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.11 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
{
"name": "wpfulcrum/config",
"description": "Fulcrum Config Module - a lean configuration component.",
"type": "library",
"keywords": [],
"homepage": "https://github.com/wpfulcrum/config",
"license": "MIT",
"support": {
"issues": "https://github.com/wpfulcrum/config/issues",
"source": "https://github.com/wpfulcrum/config"
},
"authors": [
{
"name": "Tonya Mork",
"email": "hello@hellofromtonya.com"
}
],
"autoload": {
"psr-4": {
"Fulcrum\\Config\\": "src/Config/"
},
"files": [
"src/Config/api.php"
]
},
"autoload-dev": {
"psr-4": {
"Fulcrum\\Tests\\Unit\\": "tests/unit/"
}
},
"require": {
"php": "^5.6|^7",
"wpfulcrum/extender": "^3"
},
"require-dev": {
"brain/monkey": "^2.0",
"phpunit/phpunit": "~4.8|~5.7.9",
"squizlabs/php_codesniffer": "^3.0",
"sensiolabs/security-checker": "^4.0"
},
"config": {
"sort-order": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"phpcs": "\"vendor/bin/phpcs\"",
"test-unit": "\"vendor/bin/phpunit\" --testsuite unit"
}
}