-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.82 KB
/
Copy pathcomposer.json
File metadata and controls
68 lines (68 loc) · 1.82 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "outboardphp/framework",
"description": "Outboard is a general-purpose PHP app framework.",
"license": "MPL-2.0",
"type": "library",
"keywords": [
"php",
"framework",
"adr",
"oop",
"modular",
"mvc"
],
"authors": [
{
"name": "Garrett Whitehorn",
"homepage": "https://garrettw.net/",
"role": "Lead Developer"
}
],
"homepage": "https://github.com/outboardphp/framework",
"support": {
"issues": "https://github.com/outboardphp/outboard/issues"
},
"require": {
"php": ">=8.4",
"outboardphp/di": "@dev",
"psr/container": "^2.0",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"ergebnis/composer-normalize": "^2.48",
"phpcompatibility/php-compatibility": "@dev",
"phpspec/phpspec": "@dev",
"phpstan/phpstan": "^2.1",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.13.2"
},
"suggest": {
"laminas/laminas-diactoros": "For PSR-7/17 support",
"laminas/laminas-httphandlerrunner": "For PSR-15 support"
},
"repositories": [
{
"type": "path",
"url": "../dic",
"options": {
"symlink": true
}
}
],
"autoload": {
"psr-4": {
"Outboard\\Framework\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"sort-packages": true
}
}