-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
61 lines (61 loc) · 1.78 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
{
"name": "nova-framework/system",
"type": "project",
"description": "Framework for PHP 7.1+",
"homepage": "https://github.com/nova-framework/system",
"license": "MIT",
"authors": [
{
"name": "David Carr",
"email": "[email protected]",
"homepage": "http://daveismyname.com",
"role": "Co-author"
},
{
"name": "Virgil-Adrian Teaca",
"email": "[email protected]",
"homepage": "http://giulianaeassociati.com",
"role": "Co-author"
}
],
"require": {
"php": "^7.1.8",
"danielstjules/stringy": "~1.8",
"jeremeamia/superclosure": "~2.2",
"nesbot/carbon": "^2.0.0",
"mtdowling/cron-expression": "~1.0",
"symfony/console": "4.2.*",
"symfony/debug": "4.2.*",
"symfony/finder": "4.2.*",
"symfony/http-foundation": "4.2.*",
"symfony/http-kernel": "4.2.*",
"symfony/process": "4.2.*",
"symfony/routing": "4.2.*",
"symfony/translation": "4.2.*",
"symfony/var-dumper": "4.2.*",
"doctrine/inflector": "1.1.*",
"swiftmailer/swiftmailer": "^5.4",
"monolog/monolog": "^1.19",
"predis/predis": "1.1.*",
"ramsey/uuid": "~3.0",
"erusev/parsedown": "~1.6",
"guzzlehttp/guzzle": "^5.0"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~4.0"
},
"suggest": {
"doctrine/dbal": "Allow renaming columns and dropping SQLite columns."
},
"autoload": {
"psr-4": {
"Nova\\" : "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}