-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 937 Bytes
/
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
{
"name": "semperton/framework",
"description": "The Semperton Framework.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Semperton\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Semperton\\Framework\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit tests",
"check": "psalm --no-cache"
},
"require-dev": {
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1",
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.26"
},
"require": {
"php": ">= 7.4",
"psr/container": "^1.1 || ^2.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"semperton/routing": "^2.0"
}
}