forked from linna/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1012 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 1012 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "linna/framework",
"description": "Simple and elegant basic tools for build web application.",
"keywords": [
"best-pratices",
"framework",
"learning",
"mvc-framework",
"php"
],
"homepage": "https://github.com/linna",
"license": "MIT",
"authors": [
{
"name": "Sebastian Rapetti",
"email": "[email protected]"
}
],
"require": {
"linna/typed-array" : "^1.0",
"php": "^7.1",
"psr/container": "^1.0",
"s3b4stian/simple-cache": "^1.0"
},
"require-dev": {
"infection/infection": "^0.8",
"mongodb/mongodb": "^1.2",
"phpstan/phpstan": "^0.9",
"phpunit/phpunit": "^7.1"
},
"autoload": {
"psr-4": {
"Linna\\": "src/Linna/"
}
},
"autoload-dev": {
"psr-4": {
"Linna\\TestHelper\\": "tests/TestHelper/"
},
"classmap": ["tests/"]
}
}