forked from directus/directus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.04 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
{
"require": {
"php": ">=5.5.0",
"slim/slim": "2.3.2",
"slim/extras": "dev-develop",
"twig/twig": "1.*",
"zendframework/zend-db": "dev-directus",
"directus/migrations": "dev-master",
"league/flysystem": "^1.0",
"swiftmailer/swiftmailer": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "~3.7.0"
},
"suggest": {
"paragonie/random_compat": "Generates cryptographically more secure pseudo-random bytes"
},
"_require": {
"rackspace/php-opencloud": "dev-master",
"amazonwebservices/aws-sdk-for-php": "1.6.2",
"aws/aws-sdk-php": "2.6.*@dev"
},
"autoload": {
"psr-4": {
"Directus\\": "api/core/Directus/",
"Directus\\Installation\\": "installation/includes/",
"Directus\\Embed\\Provider\\": "customs/embeds/"
},
"files": [
"api/core/functions.php"
]
},
"repositories": [
{
"type": "git",
"url": "https://github.com/wellingguzman/Slim-Extras"
},
{
"type": "git",
"url": "https://github.com/wellingguzman/zend-db"
}
]
}