-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 872 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 872 Bytes
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
{
"name": "thewebsolver/inertia",
"description": "InertiaJS adapter that follows PSR7, PSR11, & PSR15 implementation",
"license": "GPL-3.0-or-later",
"type": "library",
"keywords": ["psr-7", "psr-11", "psr-15", "inertia", "inertiajs", "adapter"],
"require": {
"php": ">=8.2.0",
"psr/http-message": "^2.0",
"psr/http-server-middleware": "1.0.2",
"psr/http-server-handler": "1.0.2",
"psr/container": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "9.6.10",
"yoast/phpunit-polyfills": "1.1.0"
},
"autoload": {
"psr-4": {
"TheWebSolver\\Codegarage\\Lib\\Inertia\\": "Src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"nyholm/psr7": "Allows using implementation of PSR7",
"thewebsolver/pipeline": "Allows handling PSR-15 Server Middleware Stack inside Request Handler"
}
}