-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 794 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 794 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
{
"name": "cubex/api-foundation",
"description": "Cubex API Foundation",
"keywords": [
"api",
"cubex"
],
"homepage": "http://cubex.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Brooke Bryan",
"email": "brooke@bajb.net",
"homepage": "http://www.bajb.net"
}
],
"config": {
"optimize-autoloader": true
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"packaged/context": "~1.3",
"packaged/routing": "~2.4",
"packaged/http": "~1.6|~2.0",
"cubex/framework": "^4.3",
"cubex/api-transport": "~0.2"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"Cubex\\ApiFoundation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cubex\\ApiFoundation\\Tests\\": "tests/"
}
}
}