This repository has been archived by the owner on Dec 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
63 lines (63 loc) · 1.79 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
{
"name": "caneara/tipsea",
"require": {
"php": "^8.1",
"bugsnag/bugsnag-laravel": "^2.0",
"doctrine/dbal": "^3.0",
"fakerphp/faker": "^1.0",
"funkjedi/composer-include-files": "^1.0",
"guzzlehttp/oauth-subscriber": "^0.6.0",
"inertiajs/inertia-laravel": "^0.5.4",
"intervention/image": "^2.0",
"laravel/framework": "^9.0",
"laravel/tinker": "^2.0",
"laravel/vapor-core": "^2.21",
"league/flysystem-aws-s3-v3": "^3.0",
"league/oauth1-client": "^1.10",
"mattkingshott/triggers": "^1.0",
"predis/predis": "^1.0",
"staudenmeir/laravel-adjacency-list": "^1.11",
"tightenco/ziggy": "^1.0"
},
"require-dev": {
"spatie/laravel-ignition": "^1.0",
"itsgoingd/clockwork": "^5.0",
"laravel/dusk": "^6.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^6.0",
"phpunit/phpunit": "^9.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"funkjedi/composer-include-files": true
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"extra": {
"include_files": [
"app/Support/Helpers.php"
]
}
}