-
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) · 1.14 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "boneframework/bone",
"description": "Bone Framework core application",
"authors": [
{
"name": "Derek Stephen McLean",
"email": "delboy1978uk@gmail.com"
}
],
"license": "MIT",
"require": {
"php": "^8.2",
"boneframework/contracts": "^1.4",
"delboy1978uk/barnacle": "^2.5.0",
"delboy1978uk/bone-db": "^1.2",
"delboy1978uk/bone-console": "^1.5",
"delboy1978uk/bone-controller": "^1.6",
"delboy1978uk/bone-firewall": "^1.2",
"delboy1978uk/bone-http": "^2.10",
"delboy1978uk/bone-i18n": "^1.3",
"delboy1978uk/bone-log": "^1.3",
"delboy1978uk/bone-router": "^1.4",
"delboy1978uk/bone-server": "^1.2",
"delboy1978uk/bone-view": "^1.8",
"delboy1978uk/icon": "^1.2",
"delboy1978uk/session": "^1.6",
"laminas/laminas-diactoros": "^3.3",
"laminas/laminas-httphandlerrunner": "^2.10"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"delboy1978uk/dev-tools": "^1.0"
},
"autoload": {
"psr-4": {
"Bone\\": "src/",
"BoneTest\\": "tests/unit"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": false
}
}
}