-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·34 lines (34 loc) · 957 Bytes
/
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
{
"name": "dneustadt/majima",
"version": "0.1.0",
"description": "majima is a lightweight PHP framework",
"keywords": ["framework", "symfony"],
"homepage": "http://softcoder.de",
"type": "project",
"license": "MIT",
"require": {
"symfony/http-foundation": "^3.2",
"symfony/http-kernel": "^3.2",
"symfony/config": "^3.2",
"symfony/dependency-injection": "^3.2",
"symfony/framework-bundle": "^3.2",
"symfony/security": "^3.2",
"symfony/security-bundle": "^3.2",
"psr/log": "^1.0",
"dwoo/dwoo": "^1.3",
"fpdo/fluentpdo": "^1.1",
"leafo/scssphp": "^0.6.7",
"patchwork/jsqueeze": "^2.0"
},
"autoload": {
"psr-4": {
"Majima\\": "majima",
"Plugins\\": "plugins"
}
},
"extra": {
"installer-paths": {
"plugins/{$name}": ["type:majima-plugin"]
}
}
}