-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
45 lines (45 loc) · 1.19 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
{
"name": "elgg/elgg",
"version": "1.12.16",
"description": "Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications.",
"license": "GPL-2.0",
"minimum-stability": "dev",
"prefer-stable": true,
"type": "project",
"require": {
"php": "~5.4",
"ext-mysql": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-xml": "*",
"symfony/http-foundation": "~2.6",
"mrclay/minify": "~2.0",
"knplabs/gaufrette": "~0.1.0",
"tedivm/stash": "0.14.*",
"ircmaxell/password-compat": "~1.0",
"elgg/login_as": "~1.9"
},
"scripts": {
"test": "phpunit",
"lint": [
"composer validate"
]
},
"suggest": {
"ext-mbstring": "*"
},
"autoload": {
"psr-0": {
"": "engine/classes/"
}
},
"autoload-dev": {
"psr-0": {
"": "engine/tests/phpunit/"
}
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"simpletest/simpletest": "~1.1"
}
}