forked from jelix/jelix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "jelix/jelix",
"type": "library",
"description": "Jelix PHP framework",
"keywords": ["framework"],
"homepage": "http://jelix.org",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Laurent Jouanneau",
"email": "laurent@jelix.org"
},
{
"name": "Jelix Community",
"homepage": "https://github.com/jelix/jelix/graphs/contributors"
}
],
"require": {
"php": ">=5.6",
"jelix/fakeserverconf": "1.0.*",
"jelix/composer-module-setup": "0.*",
"phpmailer/phpmailer": "^5.2.26",
"jelix/soap-server-module": "2.0.x-dev",
"jelix/castor": "1.0.*",
"jelix/feeds-module": "2.0.x-dev",
"jelix/inifile": "^2.4.0",
"jelix/wikirenderer-plugin": "^1.7.1",
"symfony/console":"^3.2.0",
"jelix/file-utilities": "^1.8.3",
"jelix/simplelocalization": "1.7.1",
"jelix/version": "1.0.*",
"defuse/php-encryption": "^2.1",
"google/recaptcha": "^1.1.3"
},
"require-dev": {
"jelix/buildtools": "2.0.*"
},
"archive": {
"exclude": ["/build", "/temp", "/testapp", "Makefile"]
},
"replace": {
"jelix/core": "self.version",
"jelix/event": "self.version",
"jelix/external": "self.version",
"jelix/installer": "self.version",
"jelix/legacy": "self.version",
"jelix/locale": "self.version",
"jelix/logger": "self.version",
"jelix/routing": "self.version"
},
"autoload": {
"psr-4": {
"jelix\\": "lib/jelix-legacy",
"Jelix\\DevHelper\\": "lib/jelix-scripts/DevHelper/",
"Jelix\\": "lib/Jelix"
},
"classmap": [ ],
"files": [
"lib/Jelix/Legacy/init.php",
"lib/jelix-legacy/init.php"
]
},
"bin": ["bin/create-jelix-app.php"],
"minimum-stability": "stable",
"extra" : {
"branch-alias": {
"dev-master": "2.0-dev",
"dev-jelix-1.7.x": "1.7-dev"
},
"jelix": {
"modules-dir" : [
"lib/jelix-modules",
"lib/jelix-admin-modules"
],
"plugins-dir" : [
"lib/jelix-plugins"
]
}
}
}