-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
84 lines (82 loc) · 2 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.4",
"laravel/framework": "^7.30.5",
"symfony/console": "~5.4.12",
"symfony/debug": "4.4.44",
"symfony/event-dispatcher": "~5.4.9",
"symfony/finder": "~5.4.11",
"symfony/http-foundation": "~5.4.12",
"symfony/http-kernel": "~5.4.12",
"symfony/process": "~5.4.11",
"symfony/routing": "~5.4.11",
"symfony/translation": "~5.4.12",
"symfony/var-dumper": "~5.4.11",
"laravelcollective/html": "^6.2",
"gghughunishvili/entrust": "~4.0.0",
"rap2hpoutre/laravel-log-viewer": "2.0.0",
"league/flysystem-aws-s3-v3": "~1.0",
"pda/pheanstalk": "~4.0",
"guzzlehttp/guzzle": "~6.3.1",
"phpoffice/phpword": "dev-master",
"maatwebsite/excel": "^3.1",
"ext-json": "*",
"laravel/helpers": "^1.5",
"laravel/ui": "2.5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.8|^9.3.3",
"phpspec/phpspec": "~6.1.0",
"mockery/mockery": "^1.0",
"barryvdh/laravel-ide-helper": "~2.8",
"barryvdh/laravel-debugbar": "~3.6.4",
"symfony/dom-crawler": "~5.4.12",
"symfony/css-selector": "~5.4.11"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Nrgi/helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan clear-compiled"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}