-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
106 lines (106 loc) · 3.16 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.2",
"barryvdh/laravel-snappy": "^1.0",
"doctrine/dbal": "^3.5",
"guzzlehttp/guzzle": "^7.8",
"h4cc/wkhtmltoimage-amd64": "0.12.x",
"h4cc/wkhtmltopdf-amd64": "0.12.x",
"intervention/image": "^2.7",
"jeremykenedy/laravel-logger": "^10.0",
"kriswallsmith/buzz": "^1.2",
"laracasts/flash": "^3.2",
"laravel/cashier": "^15.2",
"laravel/framework": "^11.28",
"laravel/helpers": "^1.7",
"laravel/sanctum": "^4.0",
"laravel/socialite": "^5.11",
"laravel/tinker": "^2.9",
"laravel/ui": "^4.4",
"mailgun/mailgun-php": "^3.5",
"nyholm/psr7": "^1.5",
"owen-it/laravel-auditing": "^13.6",
"php-http/curl-client": "^2.2",
"spatie/laravel-google-calendar": "^3.8",
"spatie/laravel-stripe-webhooks": "^3.7",
"stuyam/laravel-phone-validator": "dev-master",
"symfony/http-client": "^7.0",
"symfony/mailgun-mailer": "^7.0",
"spatie/laravel-html": "^3.6"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.10",
"barryvdh/laravel-ide-helper": "^3.0",
"brianium/paratest": "^7.5",
"fakerphp/faker": "^1.23",
"jasonmccreary/laravel-test-assertions": "^2.4",
"laravel/homestead": "^15.0",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"orangehill/iseed": "^3.0.1",
"phpunit/phpunit": "^11.0.1",
"symfony/css-selector": "^7.0",
"symfony/dom-crawler": "^7.0"
},
"autoload": {
"files": [
"app/Helpers/helpers.php"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"files": [
"app/Helpers/helpers.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-install-cmd": [
"homestead make"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}