-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 805 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 805 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
30
31
{
"name": "herloct/codeception-slim-module",
"type": "library",
"description": "Codeception Module for Slim 3 Microframework.",
"keywords": ["codeception", "module", "slim"],
"homepage": "https://github.com/herloct/codeception-slim-module",
"license": "MIT",
"authors": [
{
"name": "Herloct",
"email": "herloct@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^5.6 || ^7.0"
},
"require-dev": {
"php": "^5.6 || ^7.0",
"codeception/codeception": "^2.2",
"slim/slim": "^3.5"
},
"autoload": {
"psr-4": {
"Herloct\\Codeception\\": "src"
}
},
"autoload-dev": {
"classmap": ["tests/_support", "tests/functional"]
}
}