-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
67 lines (67 loc) · 2.02 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "wpfulcrum/fulcrum",
"description": "Fulcrum - The central custom repository for WordPress.",
"type": "library",
"keywords": ["wordpress", "wordpress-plugin"],
"homepage": "https://github.com/wpfulcrum/fulcrum",
"license": "MIT",
"support": {
"issues": "https://github.com/wpfulcrum/fulcrum/issues",
"source": "https://github.com/wpfulcrum/fulcrum"
},
"authors": [
{
"name": "Tonya Mork",
"email": "hello@hellofromtonya.com"
}
],
"autoload": {
"psr-4": {
"Fulcrum\\": "src/"
},
"files": [
"src/Config/api.php",
"src/Foundation/Utility/helpers.php",
"src/Extender/module.php",
"src/Extender/Arr/api.php",
"src/Extender/Str/api.php"
]
},
"autoload-dev": {
"psr-4": {
"Fulcrum\\Tests\\": "tests/"
}
},
"require": {
"php": "^5.6|^7",
"pimple/pimple" : "^3.2"
},
"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"
},
"replace": {
"wpfulcrum/config": "self.version",
"wpfulcrum/container": "self.version",
"wpfulcrum/extender": "self.version",
"wpfulcrum/foundation": "self.version",
"wpfulcrum/post-type": "self.version",
"wpfulcrum/shortcode": "self.version",
"wpfulcrum/taxonomy": "self.version",
"wpfulcrum/template": "self.version",
"wpfulcrum/widget": "self.version"
},
"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"
}
}