-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.59 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
53
54
{
"name": "wpfulcrum/extender",
"description": "Fulcrum Extender Module - extending the PHP array and string functionality + goodies for WordPress too.",
"type": "library",
"keywords": [],
"homepage": "https://github.com/wpfulcrum/extender",
"license": "MIT",
"support": {
"issues": "https://github.com/wpfulcrum/extender/issues",
"source": "https://github.com/wpfulcrum/extender"
},
"authors": [
{
"name": "Tonya Mork",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Fulcrum\\Extender\\": "src/Extender/"
},
"files": [
"src/Extender/module.php",
"src/Extender/Arr/api.php",
"src/Extender/Str/api.php"
]
},
"autoload-dev": {
"psr-4": {
"Fulcrum\\Tests\\Integration\\": "tests/Integration",
"Fulcrum\\Tests\\Unit\\": "tests/Unit/"
}
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"brain/monkey": "^2.0",
"mockery/mockery": "~0.9",
"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",
"test-integration": "\"vendor/bin/phpunit\" --testsuite integration --configuration tests/Integration/phpunit.xml.dist"
}
}