This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
87 lines (87 loc) · 2.15 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
85
86
87
{
"name": "dosomething/rogue",
"description": "The DoSomething activity service.",
"license": "MIT",
"type": "project",
"require": {
"php": "~7.4.0",
"ext-bcmath": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-gettext": "*",
"ext-newrelic": "*",
"algolia/algoliasearch-client-php": "^2.6",
"aws/aws-sdk-php-laravel": "^3.1",
"dfurnes/environmentalist": "0.0.6",
"doctrine/dbal": "~2.5.13",
"dosomething/gateway": "^3.0",
"fideloper/proxy": "^4.0",
"guzzlehttp/guzzle": "^6.2",
"hashids/hashids": "^4.0",
"intervention/image": "^2.3",
"laravel/framework": "^6.0",
"laravel/scout": "^7.2.1",
"laravel/slack-notification-channel": "^2.1",
"lcobucci/jwt": "~3.3.3",
"league/csv": "^9.0",
"league/flysystem-aws-s3-v3": "~1.0",
"league/flysystem-memory": "^1.0",
"league/fractal": "^0.13.0",
"league/glide-laravel": "^1.0",
"myclabs/php-enum": "^1.7",
"predis/predis": "~1.0",
"softonic/graphql-client": "^1.2",
"sokil/php-isocodes": "^3.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"facade/ignition": "^1.4",
"fzaninotto/faker": "^1.9.1",
"itsgoingd/clockwork": "^4.0",
"laravel/tinker": "^2.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^3.0",
"phpunit/phpunit": "^8.0",
"weerd/php-style": "^1.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"classmap": [
"database"
],
"files": [
"app/helpers.php"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"warmup": [
"@php artisan gateway:key",
"@php artisan route:cache",
"@php artisan config:cache"
]
}
}