-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.59 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
{
"name": "elgg/elgg",
"version": "2.1.0",
"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.5",
"ext-pdo": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-xml": "*",
"doctrine/dbal": "~2.5",
"symfony/http-foundation": "~2.6",
"mrclay/minify": "~2.0",
"tedivm/stash": "0.14.*",
"roave/security-advisories": "dev-master",
"elgg/login_as": "~1.9",
"elgg/data_views": "~1.0",
"zendframework/zend-mail": "~2.4",
"league/flysystem": "~1.0",
"bower-asset/jquery": "^2.1.4",
"bower-asset/jquery-ui": "^1.11.4",
"bower-asset/text": "^2.0.4",
"bower-asset/requirejs": "^2.1.18",
"bower-asset/jquery-form": "^3.51",
"bower-asset/jquery-colorbox": "^1.5.14",
"FortAwesome/Font-Awesome": "^4.3",
"michelf/php-markdown": "^1.5.0",
"league/flysystem-memory": "^1.0"
},
"scripts": {
"pre-install-cmd": "php .scripts/check_global_requirements.php",
"lint": [
"phpcs --standard=vendor/elgg/sniffs/elgg.xml --warning-severity=0 --ignore=*/tests/*,*/upgrades/*,*/deprecated* engine/classes engine/lib",
"composer validate"
],
"test": "phpunit",
"travis:install": [
"composer self-update",
"composer global require \"fxp/composer-asset-plugin:~1.1.1\"",
"composer install --prefer-source"
],
"travis:install-with-mysql": [
"composer travis:install",
"mysql -e 'create database elgg;'",
"echo \"USE mysql; UPDATE user SET password=PASSWORD('password') WHERE user='root'; FLUSH PRIVILEGES;\" | mysql -u root",
"mkdir \"${HOME}/elgg_data/\"",
"php -f ./install/cli/travis_installer.php"
]
},
"suggest": {
"ext-mbstring": "*"
},
"autoload": {
"psr-0": {
"": "engine/classes/"
}
},
"autoload-dev": {
"psr-0": {
"": "engine/tests/phpunit/"
}
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"elgg/sniffs": "dev-master",
"squizlabs/php_codesniffer": "~1.5",
"simpletest/simpletest": "~1.1",
"phpdocumentor/reflection-docblock": "~2.0"
}
}