-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·79 lines (79 loc) · 2.17 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
{
"name": "cookbook/api",
"description": "The official cookbookshq api",
"keywords": [
"php",
"cookbookshq",
"api"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.2",
"tymon/jwt-auth": "2.0.0",
"league/fractal": "1.0.x-dev",
"guzzlehttp/guzzle": "7.4.5",
"symfony/console": "^6.0.3",
"doctrine/dbal": "^3.0",
"symfony/http-kernel": "^6.3",
"ext-exif": "*",
"laravel/tinker": "^2.5",
"ext-json": "*",
"league/flysystem": "^3.0.16",
"laravel/framework": "^10.0",
"php-open-source-saver/jwt-auth": "2.1.0",
"nunomaduro/collision": "^7.0",
"socialiteproviders/tiktok": "^4.1",
"socialiteproviders/twitter": "^4.1",
"socialiteproviders/pinterest": "^4.2",
"socialiteproviders/instagram": "^4.1",
"hammerstone/sidecar": "0.4.1",
"thedevsaddam/laravel-schema": "^2.0",
"sentry/sentry-laravel": "^3.1",
"ipinfo/ipinfolaravel": "^2.4",
"spatie/laravel-ignition": "^2.1",
"ichtrojan/laravel-otp": "^1.4",
"symfony/mailgun-mailer": "^6.3",
"symfony/http-client": "^6.3"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^10.0",
"ext-json": "*",
"fakerphp/faker": "1.19.0",
"laravel/sail": "^1.15",
"nunomaduro/larastan": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"classmap": [
"tests/",
"database/seeders"
],
"files": [
"app/Http/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}