-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
80 lines (80 loc) · 2.23 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.4",
"ext-bcmath": "*",
"laravel/framework": "^6.18",
"laravelcollective/html": "^6.1",
"doctrine/dbal": "^2.10",
"phpoffice/phpword": "^0.17",
"mariuzzo/laravel-js-localization": "^1.6",
"nanigans/single-table-inheritance": "0.8.*",
"doctrine/common": "^3.0",
"rap2hpoutre/laravel-log-viewer": "^1.6",
"spatie/laravel-translation-loader": "^2.6",
"kyslik/column-sortable": "^6.3",
"laravel/helpers": "^1.2",
"ext-intl": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"fzaninotto/faker": "^1.9",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.2",
"filp/whoops": "^2.7",
"laravel/telescope": "^3.5",
"barryvdh/laravel-ide-helper": "^2.7",
"barryvdh/laravel-dompdf": "^0.8",
"barryvdh/laravel-debugbar": "^3.3",
"nunomaduro/larastan": "^0.6.2"
},
"conflict": {
"symfony/polyfill-php80": "*"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"analyse" : "@php artisan code:analyse --level=1",
"test": "./vendor/bin/phpunit"
},
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.4"
}
}
}