-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
51 lines (51 loc) · 1.12 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
{
"name": "b13/slimphp-bridge",
"type": "typo3-cms-extension",
"description": "Provides a middleware for registering Slim PHP applications within TYPO3 Frontend Sites",
"homepage": "https://github.com/b13/slimphp-bridge",
"keywords": ["typo3", "api", "slimphp", "psr-15"],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "b13 Development Team",
"role": "Maintainer",
"homepage": "https://b13.com"
}
],
"support": {
"issues": "https://github.com/b13/slimphp/issues"
},
"require": {
"typo3/cms-core": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-frontend": "^10.4 || ^11.5 || ^12.4",
"slim/slim": "^4.1",
"sapphirecat/slim4-http-interop-adapter": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nyholm/psr7": "^1.1",
"nyholm/psr7-server": "^1.0.1",
"typo3/coding-standards": "^0.5.5"
},
"extra": {
"typo3/cms": {
"extension-key": "slimphp_bridge"
}
},
"autoload": {
"psr-4": {
"B13\\SlimPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"B13\\SlimPhp\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpunit"
],
"phpunit": "php vendor/bin/phpunit tests/"
}
}