forked from darrengopower/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 2.91 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "notadd/framework",
"description": "The Core Code For Notadd CMS!",
"keywords": [
"framework",
"notadd"
],
"homepage": "http://notadd.org",
"license": "Apache License",
"require": {
"php": ">=5.5.9",
"ext-fileinfo": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"illuminate/auth": "5.2.*",
"illuminate/bus": "5.2.*",
"illuminate/broadcasting": "5.2.*",
"illuminate/cache": "5.2.*",
"illuminate/config": "5.2.*",
"illuminate/console": "5.2.*",
"illuminate/container": "5.2.*",
"illuminate/contracts": "5.2.*",
"illuminate/database": "5.2.*",
"illuminate/cookie": "5.2.*",
"illuminate/encryption": "5.2.*",
"illuminate/events": "5.2.*",
"illuminate/filesystem": "5.2.*",
"illuminate/hashing": "5.2.*",
"illuminate/http": "5.2.*",
"illuminate/log": "5.2.*",
"illuminate/mail": "5.2.*",
"illuminate/pagination": "5.2.*",
"illuminate/pipeline": "5.2.*",
"illuminate/queue": "5.2.*",
"illuminate/redis": "5.2.*",
"illuminate/routing": "5.2.*",
"illuminate/session": "5.2.*",
"illuminate/support": "5.2.*",
"illuminate/validation": "5.2.*",
"illuminate/view": "5.2.*",
"classpreloader/classpreloader": "~3.0",
"doctrine/inflector": "~1.0",
"doctrine/dbal": "^2.5",
"jeremeamia/superclosure": "~2.2",
"league/flysystem": "~1.0",
"monolog/monolog": "~1.11",
"mtdowling/cron-expression": "~1.0",
"nesbot/carbon": "~1.20",
"psy/psysh": "0.7.*",
"swiftmailer/swiftmailer": "~5.1",
"symfony/console": "3.0.*",
"symfony/debug": "3.0.*",
"symfony/finder": "3.0.*",
"symfony/http-foundation": "3.0.*",
"symfony/http-kernel": "3.0.*",
"symfony/polyfill-php56": "~1.0",
"symfony/process": "3.0.*",
"symfony/routing": "3.0.*",
"symfony/translation": "3.0.*",
"symfony/var-dumper": "3.0.*",
"vlucas/phpdotenv": "~2.2",
"guzzlehttp/guzzle": "~5.3|~6.0",
"guzzlehttp/psr7": "~1.1",
"symfony/psr-http-message-bridge": "^0.2.0",
"zendframework/zend-diactoros": "^1.3.5",
"paragonie/random_compat": "^1.4.1",
"mobiledetect/mobiledetectlib": "2.8.*"
},
"require-dev": {
"aws/aws-sdk-php": "~3.0",
"mockery/mockery": "~0.9.4",
"pda/pheanstalk": "~3.0",
"phpunit/phpunit": "~4.1",
"predis/predis": "~1.0",
"symfony/css-selector": "3.0.*",
"symfony/dom-crawler": "3.0.*"
},
"autoload": {
"files": [
"src/Notadd/helpers.php"
],
"psr-4": {
"Notadd\\": "src/Notadd/",
"Notadd\\Api\\": "src/Api/"
}
},
"config": {
"preferred-install": "dist"
}
}