forked from maglnet/MaglLegacyApplication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.29 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
{
"name": "maglnet/magl-legacy-application",
"type": "library",
"description": "Provides a laminas module that is able to run legacy applications with the power of laminas.",
"homepage": "https://github.com/maglnet/MaglLegacyApplication",
"license": "BSD-3-Clause",
"keywords": [
"legacy",
"legacy application",
"laminas"
],
"support": {
"source": "https://github.com/maglnet/MaglLegacyApplication",
"issues": "https://github.com/maglnet/MaglLegacyApplication/issues"
},
"authors": [
{
"name": "Matthias Glaub",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"laminas/laminas-eventmanager": "^3.0",
"laminas/laminas-http": "^2.0",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-router": "^3.0",
"laminas/laminas-servicemanager": "^3.0",
"laminas/laminas-stdlib": "^3.0",
"laminas/laminas-view": "^2.5"
},
"require-dev": {
"laminas/laminas-modulemanager": "^2.5",
"laminas/laminas-test": "^3.0",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"MaglLegacyApplication\\": "src/MaglLegacyApplication"
}
}
}