-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.11 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
{
"name": "activecollab/controller",
"description": "Invokable controller that accepts containers, works with ETag and more",
"keywords": [
"controller"
],
"license": "MIT",
"type": "library",
"require": {
"php": ">=8.0",
"ext-json": "*",
"activecollab/containeraccess": "^2.0",
"activecollab/etag": "^1.0",
"activecollab/templateengine": "^3.0",
"activecollab/utils": "^2.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "~1.0",
"laminas/laminas-diactoros": "^2.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"monolog/monolog": "^1.0",
"pimple/pimple": "^3.0",
"phpunit/phpunit": "^9.0"
},
"suggest": {
"slim/http": "Allow using of chunked file download"
},
"autoload": {
"psr-4": {
"ActiveCollab\\Controller\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ActiveCollab\\Controller\\Test\\": "test/src"
}
}
}