-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
108 lines (108 loc) · 3.27 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.1",
"barryvdh/laravel-snappy": "^1.0",
"directorytree/ldaprecord-laravel": "^2.7",
"doctrine/dbal": "^3.5",
"golonka/bbcodeparser": "^3.0",
"google/cloud-storage": "^1.27",
"guzzlehttp/guzzle": "^7.2",
"hitrov/oci-api-php-request-sign": "^1.2",
"inertiajs/inertia-laravel": "^0.6",
"knplabs/knp-snappy": "1.4.2",
"larabug/larabug": "^3.0",
"laragear/two-factor": "^1.2",
"laravel/cashier": "^14.7",
"laravel/framework": "^10.4",
"laravel/nova": "4.22.1",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.2",
"league/flysystem-aws-s3-v3": "^3.0",
"league/oauth2-google": "^4.0",
"maatwebsite/excel": "^3.1",
"mews/purifier": "^3.4",
"microsoft/microsoft-graph": "^1.75",
"onelogin/php-saml": "^4.0",
"openspout/openspout": "^4.6",
"phpmailer/phpmailer": "^6.6",
"socialiteproviders/atlassian": "dev-master",
"socialiteproviders/bitbucket": "^4.1",
"socialiteproviders/digitalocean": "^4.1",
"socialiteproviders/github": "^4.1",
"socialiteproviders/gitlab": "^4.1",
"socialiteproviders/google": "^4.1",
"socialiteproviders/microsoft": "^4.1",
"socialiteproviders/microsoft-azure": "^5.1",
"spatie/laravel-csp": "^2.8",
"spatie/laravel-permission": "^5.8",
"stancl/tenancy": "^3.7",
"staudenmeir/eloquent-has-many-deep": "^1.18",
"stechstudio/laravel-zipstream": "^4.12",
"symfony/mailer": "^6.1",
"tightenco/ziggy": "^1.4"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/sail": "^1.18",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
],
"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
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
]
}