-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 888 Bytes
/
composer.json
File metadata and controls
45 lines (45 loc) · 888 Bytes
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
{
"name": "dual/dual",
"description": "A lightweight, auto-loading, api-centric framework...",
"license": "MIT",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Paul Cruse III",
"email": "paulcruse3@gmail.com"
}
],
"keywords": [
"api",
"framework",
"autoload",
"lightweight",
"PSR-7",
"PSR-18"
],
"require": {
"ext-json": "^1.7",
"php": "^7.3"
},
"require-dev": {
"phpunit/phpunit": "^9.2"
},
"autoload": {
"psr-4": {
"Dual\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dual\\Tests\\": "tests/"
}
},
"suggest": {
"ext-json": "Required for JSON support"
},
"config": {
"sort-packages": true
}
}