-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.15 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
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
{
"name": "wpfulcrum/container",
"description": "Fulcrum DI Container Module - a simple Dependency Injection Container that extends Pimple.",
"type": "library",
"keywords": [],
"homepage": "https://github.com/wpfulcrum/container",
"license": "MIT",
"support": {
"issues": "https://github.com/wpfulcrum/container/issues",
"source": "https://github.com/wpfulcrum/container"
},
"authors": [
{
"name": "Tonya Mork",
"email": "hello@hellofromtonya.com"
}
],
"autoload": {
"psr-4": {
"Fulcrum\\Container\\": "src/Container/"
}
},
"autoload-dev": {
"psr-4": {
"Fulcrum\\Tests\\Unit\\": "tests/unit/"
}
},
"require": {
"php": "^5.6|^7",
"pimple/pimple" : "^3.2",
"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"
}
}