-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
75 lines (75 loc) · 2.08 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-bz2": "*",
"laravel/framework": "5.8.*",
"webpatser/laravel-countries": "dev-master",
"league/climate": "^3.2",
"devster/ubench": "1.2.*",
"guzzlehttp/guzzle": "~5.3|~6.0",
"doctrine/dbal": "^2.5",
"predis/predis": "~1.0",
"pear/net_dns2": "^1.4",
"elasticquent/elasticquent": "dev-master",
"laravel/tinker": "^1.0",
"smi2/phpclickhouse": "^1.3",
"barryvdh/laravel-debugbar": "^3.2",
"jeremykendall/php-domain-parser": "^5.6",
"geoip2/geoip2": "2.9.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.7",
"symfony/css-selector": "2.8.*|3.1.*",
"symfony/dom-crawler": "2.8.*|3.1.*"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"php artisan clear-compiled",
"\\Pdp\\Installer::updateLocalCache",
"php artisan zBGPView:update-maxmind-database",
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"\\Pdp\\Installer::updateLocalCache",
"php artisan zBGPView:update-maxmind-database",
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
}
}