-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (41 loc) · 1.02 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
{
"name": "danack/slim-auryn-invoker",
"type": "library",
"description": "Allows route callables to be dispatched by Auryn.",
"keywords": ["auryn", "di"],
"license": "MIT",
"authors": [
{
"name": "Danack",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"rdlowrey/auryn": "^1.4.2"
},
"require-dev": {
"erusev/parsedown": "^1.7",
"mockery/mockery": "^1.2.0",
"phpunit/phpunit": "9.5.6",
"pimple/pimple": "^3.0",
"psr/http-message": "^1.0.1",
"slim/slim": "3.7.0",
"squizlabs/php_codesniffer": "^3.6.0",
"twig/twig": "^2.6.2",
"monolog/monolog": "1.23.0",
"yoast/yoastcs": "1.0",
"laminas/laminas-diactoros": "^2.6.0"
},
"autoload": {
"psr-0": {
"SlimAuryn\\": "lib/"
}
},
"autoload-dev": {
"psr-0": {
"SlimAurynTest\\": "test/",
"SlimAurynExample\\": "example/lib/"
}
}
}