-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
73 lines (73 loc) · 2.23 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
{
"name": "joomla/joomla-cms",
"type": "application",
"description": "Joomla CMS",
"keywords": [
"joomla",
"cms",
"content management"
],
"homepage": "https://github.com/joomla/joomla-cms",
"license": "GPL-2.0+",
"require": {
"league/flysystem": "^1.0",
"league/tactician": "^1.0",
"monolog/monolog": "^1.17",
"matthiasmullie/scrapbook": "^1.0",
"guzzlehttp/guzzle": "^6.1",
"zendframework/zend-diactoros": "^1.3",
"container-interop/container-interop": "^1.1",
"vlucas/phpdotenv": "^2.2",
"joomla/registry": "^1.5",
"aura/session": "^2.0",
"joomla/string": "^1.4",
"joomla-x/event": "3.0.x-dev",
"joomla-x/di": "3.0.x-dev",
"joomla-x/orm": "dev-master",
"symfony/dependency-injection": "^3.4",
"symfony/yaml": "^3.4",
"symfony/console": "^3.4"
},
"require-dev": {
"codeception/codeception": "^3.1.3",
"slim/csrf": "^0.7.0",
"greencape/coding-standards": "^1.0",
"mayflower/php-codebrowser": "^1.1",
"codeception/mockery-module": "^0.4.0",
"phpmetrics/phpmetrics": "^2.7",
"sebastian/phpcpd": "^2.0",
"pdepend/pdepend": "^2.2",
"phpmd/phpmd": "^2.4",
"phploc/phploc": "*",
"phpunit/phpunit": "^5",
"phpunit/php-code-coverage": "^4",
"phpunit/phpunit-mock-objects": "^3.2",
"consolidation/robo": "^1.0",
"phpunit/dbunit": "~2"
},
"autoload": {
"psr-4": {
"Joomla\\": "src/libraries/incubator/",
"Joomla\\Extension\\": "src/extensions/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Tests\\Unit\\": "tests/unit/",
"Joomla\\Tests\\Cli\\": "tests/cli/",
"Joomla\\Tests\\Functional\\": "tests/functional/",
"Joomla\\Tests\\System\\": "tests/acceptance/",
"Joomla\\Tests\\Page\\": "tests/_support/Page/"
}
},
"suggest": {
"ext-fileinfo": "Required for MimeType",
"ext-apc": "Allows caching using APC",
"ext-couchbase": "Allows caching using CouchDB",
"ext-memcached": "Allows caching using MemCacheD",
"ext-redis": "Allows caching using Redis",
"ext-pdo": "Allows caching using PDO",
"ext-amqp": "Allows sending log messages to an AMQP server (1.0+ required)",
"ext-mongo": "Allows sending log messages to a MongoDB server"
}
}