-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.6 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
{
"name": "laravel/database",
"description": "Get Laravel 7.11.x database for your non laravel projects. Built on top of illuminate/database to provide migration, seeding and artisan support",
"keywords": [
"laravel",
"database",
"sql",
"orm"
],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Arul Kumaran",
"email": "arul@luracast.com"
}
],
"require": {
"php": "^7.2.5|^8",
"arul/reactphp-restler": "^6.0",
"illuminate/cache": "^7.10",
"illuminate/database": "^7.10",
"illuminate/events": "^7.10",
"illuminate/filesystem": "^7.10",
"illuminate/pagination": "^7.10",
"jenssegers/mongodb": "^4",
"league/flysystem": "^1.0",
"luracast/config": "2.*",
"psy/psysh": "^0.10.4",
"symfony/process": "^5.0",
"vlucas/phpdotenv": "^4.1",
"webonyx/graphql-php": "^14.3"
},
"require-dev": {
"doctrine/dbal": "~2.10",
"illuminate/console": "^7.10",
"illuminate/queue": "^7.10",
"illuminate/view": "^7.10",
"laravel/helpers": "^1.2"
},
"suggest": {
"doctrine/dbal": "Allow renaming columns and dropping SQLite columns."
},
"autoload": {
"psr-4": {
"Bootstrap\\": "bootstrap/",
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}