-
-
Notifications
You must be signed in to change notification settings - Fork 636
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.57 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.57 KB
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
{
"name": "hieventsdev/hi.events",
"type": "project",
"description": "hi.events - Ticket selling and event management.",
"keywords": ["ticketing", "events"],
"license": "AGPL-3.0",
"version": "0.0.1",
"require": {
"php": "^8.2",
"ext-intl": "*",
"barryvdh/laravel-dompdf": "^3.0",
"brick/money": "^0.8.0",
"doctrine/dbal": "^3.6",
"druc/laravel-langscanner": "^2.2",
"ezyang/htmlpurifier": "^4.17",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^11.0",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.8",
"laravel/vapor-core": "^2.37",
"league/flysystem-aws-s3-v3": "^3.0",
"liquid/liquid": "^1.4",
"maatwebsite/excel": "^3.1",
"nette/php-generator": "^4.0",
"php-open-source-saver/jwt-auth": "^2.1",
"sentry/sentry-laravel": "^4.13",
"spatie/icalendar-generator": "^2.8",
"spatie/laravel-data": "^4.11",
"spatie/laravel-webhook-server": "^3.8",
"stripe/stripe-php": "^10.15"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"gettext/gettext": "^5.7",
"laravel/pint": "^1.0",
"laravel/sail": "^1.22",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^10.1",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"HiEvents\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"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-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": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}