This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
121 lines (117 loc) · 3.97 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
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "laravelrus/laravel.su",
"description": "The Laravel Framework Translation Website",
"keywords": [
"laravelrus",
"laravel.su"
],
"license": "MIT",
"type": "project",
"repositories": [
{"type": "path", "url": "libs/content-renderer"},
{"type": "path", "url": "libs/github"}
],
"require": {
"php": "^8.2",
"beberlei/doctrineextensions": "^1.3",
"doctrine/inflector": "^2.0",
"guzzlehttp/guzzle": "^7.7",
"happyr/doctrine-specification": "^2.0",
"laravel-doctrine/orm": "^2.0",
"laravel/framework": "^10.10",
"laravel/tinker": "^2.8",
"local/content-renderer": "^1.0",
"local/github": "^1.0",
"sentry/sentry-laravel": "^3.7",
"serafim/tf-idf": "^0.1",
"symfony/clock": "^6.3"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-mbstring": "*"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.13",
"fakerphp/faker": "^1.23",
"friendsofphp/php-cs-fixer": "^3.23",
"fruitcake/laravel-telescope-toolbar": "^1.3",
"laravel/telescope": "^4.16",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^6.0|^7.0",
"phpat/phpat": "^0.10",
"phpunit/phpunit": "^10.1",
"rector/rector": "^0.18",
"spatie/laravel-ignition": "^2.0",
"vimeo/psalm": "^5.14",
"weirdan/doctrine-psalm-plugin": "^2.9"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Database\\Factories\\": "database/factories",
"Database\\Seeders\\": "database/seeds",
"App\\GitHub\\Tests\\": "libs/github/tests",
"App\\ContentRenderer\\Tests\\": "libs/content-renderer/tests"
}
},
"scripts": {
"test": ["@test:unit", "@test:functional", "@test:architecture"],
"test:unit": "phpunit --testdox --testsuite=unit",
"test:functional": "phpunit --testdox --testsuite=feature",
"test:architecture": "phpstan analyse -c phpstan.neon",
"linter": "@linter:check",
"linter:check": "psalm --no-cache",
"linter:fix": "psalm --no-cache --alter",
"phpcs": "@phpcs:check",
"phpcs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run --verbose --diff",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff",
"rector": "@rector:check",
"rector:check": "rector --dry-run --config=rector.php",
"rector:fix": "rector --config=rector.php",
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"config": {
"bin-compat": "full",
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": false
}
},
"extra": {
"laravel": {
"dont-discover": []
},
"branch-alias": {
"dev-master": "2.x-dev",
"dev-main": "2.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}