-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 2.08 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "gismo/gismo",
"type": "library",
"description": "Gismo All in one",
"keywords": ["Gismo", "framework"],
"homepage": "https://getgismo.com",
"license": "MIT",
"authors": [
{
"name": "Matthias Leuffen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"symfony/yaml": "^3.1",
"firephp/firephp-core": "*",
"leafo/scssphp": "0.6.5",
"oyejorge/less.php": "~1.7.0.10",
"html5/template": "*",
"html5/fhtml": "*",
"psr/cache": "~1.0",
"phore/annotations": "*",
"phore/di-base": "*",
"phore/file": "*",
"phore/cli": "*"
},
"autoload": {
"psr-4": {
"Gismo\\Component\\Application\\": "src/application/src/Application",
"Gismo\\Test\\Component\\Application\\": "test",
"Gismo\\Component\\Di\\": "src/di/src/Di",
"Gismo\\Component\\HttpFoundation\\": "src/http-foundation/src/HttpFoundation",
"Gismo\\Component\\Partial\\": "src/partial/src/Partial",
"Gismo\\Component\\PhpFoundation\\": "src/php-foundation/src/PhpFoundation",
"Gismo\\Component\\Plugin\\": "src/plugin/src/Plugin",
"Gismo\\Component\\DevTools\\": "src/dev-tools/src/DevTools",
"Gismo\\Component\\Route\\": "src/route/src/Route",
"Gismo\\Component\\Logging\\": "src/logging/src/Logging",
"Gismo\\Component\\Api\\": "src/api/src/Api",
"Gismo\\Component\\Config\\": "src/config/src/Config",
"Gismo\\Component\\ApplicationDevTools\\": "src/applicationDevTools/src/ApplicationDevTools",
"Gismo\\Component\\Cache\\": "src/cache/src/Cache",
"Gismo\\Component\\Annotation\\": "src/annotation/src/Annotation",
"Gismo\\Component\\JsBridge\\": "src/js-bridge/src/JsBridge"
},
"files": [
"src/php-foundation/src/functions.inc.php"
],
"exclude-from-classmap": [
"/test/"
]
},
"minimum-stability": "dev"
}