-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
67 lines (67 loc) · 1.64 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
{
"name": "laravel/database",
"description": "Get Laravel 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.4|^8",
"illuminate/cache": "^8",
"illuminate/database": "^8",
"illuminate/events": "^8",
"illuminate/filesystem": "^8",
"illuminate/pagination": "^8",
"league/flysystem": "^1.0",
"psy/psysh": "^0.10.4",
"symfony/process": "^5",
"vlucas/phpdotenv": "^5",
"ext-json": "*"
},
"require-dev": {
"doctrine/dbal": "~2.10",
"fakerphp/faker": "^1.19",
"illuminate/console": "^8",
"illuminate/view": "^8",
"laravel/helpers": "^1"
},
"suggest": {
"doctrine/dbal": "Allow renaming columns and dropping SQLite columns."
},
"autoload": {
"files": [
],
"psr-4": {
"App\\": "app/",
"Bootstrap\\": "bootstrap/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"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');\""
],
"post-autoload-dump": [
"Bootstrap\\Console\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
}
}