forked from directus/directus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.41 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
{
"require": {
"php": ">=5.6.0",
"slim/slim": "2.6.2",
"slim/extras": "dev-master",
"twig/twig": "1.*",
"zendframework/zend-db": "dev-directus",
"directus/migrations": "dev-master",
"league/flysystem": "^1.0",
"swiftmailer/swiftmailer": "^5.4",
"league/oauth2-google": "^2.0",
"league/oauth2-github": "^2.0",
"league/oauth2-facebook": "^2.0",
"league/oauth1-client": "^1.7",
"intervention/image": "^2.4",
"cache/cache": "^1.0"
},
"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\\API\\Routes\\": "api/routes/",
"Directus\\Installation\\": "installation/includes/",
"Directus\\Customs\\Embed\\Provider\\": "customs/embeds/",
"Directus\\Customs\\Hooks\\": "customs/hooks/",
"Directus\\Customs\\Hasher\\": "customs/hashers/"
},
"files": [
"api/core/functions.php"
]
},
"repositories": [
{
"type": "git",
"url": "https://github.com/WellingGuzman/Slim-Extras.git"
},
{
"type": "git",
"url": "https://github.com/wellingguzman/zend-db"
}
]
}