forked from CradlePHP/Cradle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.56 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.56 KB
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
{
"name": "cradlephp/cradle",
"description": "PHP Micro Framework powered by Event Pipes",
"type": "framework",
"minimum-stability": "dev",
"license": "MIT",
"homepage": "https://cradlephp.github.io/",
"authors": [
{
"name": "Christian Blanquera",
"email": "cblanquera@openovate.com"
}
],
"require-dev": {
"phpunit/phpunit": "7.0.2",
"squizlabs/php_codesniffer": "3.2.3",
"satooshi/php-coveralls": "2.0.0"
},
"require": {
"cradlephp/framework": "~2.1.6",
"cradlephp/handlebars": "~1.0.1",
"cradlephp/storm": "~1.0.1",
"cradlephp/cradle-developer": "1.*",
"cradlephp/cradle-system": "1.*",
"cradlephp/cradle-install": "0.*",
"cradlephp/cradle-auth": "0.*",
"cradlephp/cradle-history": "0.*",
"cradlephp/cradle-profile": "0.*",
"elasticsearch/elasticsearch": "2.2.2",
"predis/predis": "1.1.1",
"aws/aws-sdk-php": "3.19.30",
"swiftmailer/swiftmailer": "5.4.3",
"jakoch/phantomjs-installer": "2.1.1-p07",
"cradlephp/cradle-role": "0.0.*",
"erusev/parsedown": "1.7.1"
},
"autoload": {
"psr-4": {
"Cradle\\Module\\Utility\\": "module/utility/src/"
}
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
}
}