forked from Connected-Places/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
116 lines (116 loc) · 3.37 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "GNU AGPLv3",
"type": "project",
"require": {
"php": "^8.1",
"ext-gd": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"alphagov/notifications-php-client": "^5.0",
"babenkoivan/elastic-migrations": "^2.0",
"babenkoivan/elastic-scout-driver": "^2.0",
"babenkoivan/elastic-scout-driver-plus": "^3.5",
"bugsnag/bugsnag-laravel": "^2.26",
"doctrine/dbal": "^3.5",
"erusev/parsedown": "^1.7",
"firebase/php-jwt": "^6.1",
"goldspecdigital/oooas": "^2.8",
"guzzlehttp/guzzle": "^7.2",
"kalnoy/nestedset": "^6.0",
"laravel/framework": "^10.29",
"laravel/passport": "^11.5",
"laravel/scout": "*",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.2",
"league/flysystem-aws-s3-v3": "^3.0",
"mailgun/mailgun-php": "^3.3",
"nyholm/psr7": "^1.3",
"php-http/guzzle7-adapter": "^1.0",
"phpoffice/phpspreadsheet": "^1.15",
"predis/predis": "^2.2",
"spatie/laravel-query-builder": "^5.1",
"symfony/http-client": "^6.2",
"symfony/mailgun-mailer": "^6.2",
"symfony/yaml": "^6.2",
"twilio/sdk": "^6.6"
},
"require-dev": {
"brianium/paratest": "^6.8",
"fakerphp/faker": "^1.16",
"friendsofphp/php-cs-fixer": "^3.2",
"laravel/telescope": "^5.0",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.3",
"pda/pheanstalk": "~4.0",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"bootstrap/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/telescope"
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"test": [
"@test:style",
"@test:unit"
],
"test:style": [
"@fix:style --dry-run"
],
"test:unit": [
"@php vendor/bin/phpunit"
],
"fix:style": [
"@php vendor/bin/php-cs-fixer fix --config=.php_cs_fixer.php --allow-risky=yes --verbose"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 0,
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"minimum-stability": "stable",
"prefer-stable": true
}