forked from wbstack/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 2.6 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
{
"name": "wbstack/platform-api",
"description": "The WBStack Platform API.",
"keywords": [
"wbstack",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"absszero/laravel-stackdriver-error-reporting": "^1.7",
"cviebrock/eloquent-sluggable": "^10.0",
"doctrine/dbal": "^3.1",
"firebase/php-jwt": "^6.10",
"google/recaptcha": "^1.2",
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/psr7": "^1.9",
"hackzilla/password-generator": "^1.6",
"intervention/image": "^2.5",
"laravel/framework": "^10.10",
"laravel/horizon": "^5.23",
"laravel/passport": "^11.0",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.4",
"lcobucci/jwt": "^4.1",
"league/flysystem-aws-s3-v3": "^3.22",
"lkaemmerling/laravel-horizon-prometheus-exporter": "^1.7",
"maclof/kubernetes-client": "^0.29.0",
"mxl/laravel-job": "^1.5",
"percymamedy/laravel-dev-booter": "^4.0",
"php-http/guzzle7-adapter": "^1.0",
"php-http/message": "^1.16",
"php-http/message-factory": "^1.1",
"predis/predis": "^1.1"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "2.13",
"fakerphp/faker": "^1.17",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^10.5",
"psalm/plugin-laravel": "^2.8",
"timacdonald/log-fake": "^2.1",
"vimeo/psalm": "^5.19"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": [
"@psalm",
"@phpunit"
],
"psalm": "vendor/bin/psalm",
"phpunit": "vendor/bin/phpunit",
"check-style": "php-cs-fixer fix --dry-run --diff",
"fix-style": "php-cs-fixer fix"
},
"config": {
"platform": {
"php": "8.2"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": false
}
},
"minimum-stability": "stable",
"prefer-stable": true
}