forked from equip/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.67 KB
/
composer.json
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
{
"name": "pagely/framework",
"description": "A tiny framework that can start anything. forked from the Eqiup framework",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pagely",
"homepage": "https://pagely.com/"
},
{
"name": "Equip Contributors",
"homepage": "https://github.com/equip"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"pagely/config": "^2.0",
"pagely/structure": "^2.0",
"filp/whoops": "^2.0",
"lukasoppermann/http-status": "^2",
"nikic/fast-route": "^1.0",
"psr/log": "^1.0",
"rdlowrey/auryn": "^1.1",
"relay/relay": "^2.0",
"willdurand/negotiation": "^3.0",
"psr/http-message": "^1.0",
"laminas/laminas-diactoros": "^2.0",
"monolog/monolog": "^1.0",
"middlewares/payload": "^3.0",
"laminas/laminas-httphandlerrunner": "^1.4"
},
"require-dev": {
"josegonzalez/dotenv": "^2.0",
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^4.7",
"phpstan/phpstan": "^0.12.89"
},
"suggest": {
"josegonzalez/dotenv": "For environment based configuration loading"
},
"autoload": {
"psr-4": {
"Equip\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EquipTests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/pagely/structure.git"
},
{
"type": "vcs",
"url": "https://github.com/pagely/config.git"
}
]
}