-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.08 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
{
"name": "cherif/inertia-psr15",
"description": "InertiaJS server-side adapter for PSR-7 and PSR-15 applications",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Cherif BOUCHELAGHEM",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"laminas/laminas-diactoros": "^2.5",
"mezzio/mezzio-template": "^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.4",
"psr/container": "^1.0",
"twig/twig": "^3.0"
},
"config": {
"sort-packages": true
},
"extra": {
"laminas": {
"config-provider": "Cherif\\InertiaPsr15\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"Cherif\\InertiaPsr15\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InertiaPsr15Test\\": "test/"
}
},
"scripts": {
"test": "phpunit --colors=always"
}
}