-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
107 lines (107 loc) · 3.43 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
{
"name": "buggregator/app",
"type": "project",
"description": "Buggregator is a lightweight, standalone server that offers a range of debugging features for PHP applications.",
"homepage": "https://buggregator.dev/",
"support": {
"issues": "https://github.com/buggregator/server/issues",
"source": "https://github.com/buggregator/server"
},
"license": "BSD-4-Clause",
"authors": [
{
"name": "Aleksei Gagarin (roxblnfk)",
"homepage": "https://github.com/roxblnfk"
},
{
"name": "Pavel Buchnev (butschster)",
"homepage": "https://github.com/butschster"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/buggregator"
},
{
"type": "patreon",
"url": "https://www.patreon.com/butschster"
}
],
"require": {
"php": ">=8.2",
"ext-mbstring": "*",
"auth0/auth0-php": "^8.11",
"doctrine/collections": "^1.8",
"firebase/php-jwt": "^6.10",
"guzzlehttp/guzzle": "^7.8",
"kinde-oss/kinde-auth-php": "^1.2",
"nesbot/carbon": "^2.64",
"php-http/message": "^1.11",
"phpdocumentor/reflection-docblock": "^5.4",
"spiral-packages/cqrs": "^2.0",
"spiral-packages/league-event": "^1.0",
"spiral-packages/symfony-serializer": "^2.2",
"spiral/cycle-bridge": "^2.5",
"spiral/data-grid": "^3.0",
"spiral/framework": "^3.12",
"spiral/nyholm-bridge": "^1.3",
"spiral/roadrunner-bridge": "^3.0",
"spiral/roadrunner-tcp": "^3.1",
"spiral/validator": "^1.1",
"symfony/mime": "^6.2",
"symfony/var-dumper": "^6.1",
"symfony/yaml": "^7.0",
"zbateson/mail-mime-parser": "^2.0",
"zentlix/swagger-php": "1.x-dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"phpunit/phpunit": "^10.0",
"qossmic/deptrac-shim": "^1.0",
"rector/rector": "^1.0",
"sentry/sentry": "^4.7",
"spatie/ray": "^1.41",
"spiral-packages/database-seeder": "^3.1",
"spiral/roadrunner-cli": "^2.6",
"spiral/testing": "^2.6",
"vimeo/psalm": "^5.16"
},
"autoload": {
"psr-4": {
"App\\": "app/src",
"Modules\\": "app/modules",
"Database\\": "app/database"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Utils\\Rector\\": "utils/rector/src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true,
"php-http/discovery": false
}
},
"scripts": {
"post-create-project-cmd": [
"php -r \"copy('.env.sample', '.env');\"",
"php app.php encrypt:key -m .env",
"php app.php configure -vv",
"rr get-binary"
],
"psalm": "vendor/bin/psalm --config=psalm.xml ./app",
"rector": "vendor/bin/rector process --dry-run",
"cs-check": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php -vvv --using-cache=no",
"deptrack": [
"deptrac analyze --report-uncovered"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}