-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcomposer.json
87 lines (87 loc) · 2.84 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
{
"name": "rector/website",
"license": "proprietary",
"description": "Website of getrector.com",
"require": {
"php": "^8.2",
"imagine/imagine": "^1.5",
"jajo/jsondb": "^3.0.1",
"laravel/framework": "^11.36",
"league/commonmark": "^2.6",
"livewire/livewire": "^3.5",
"nesbot/carbon": "^3.8",
"nikic/php-parser": "^5.4",
"rector/rector": "dev-main as 2.0",
"samsonasik/array-lookup": "^2.0",
"symfony/filesystem": "^7.2",
"symfony/uid": "^7.2",
"symfony/yaml": "^7.2",
"symplify/vendor-patches": "^11.3"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.3",
"driftingly/rector-laravel": "^2.0.2",
"nette/robot-loader": "^4.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "11.4.0",
"rector/swiss-knife": "^1.0",
"phpecs/phpecs": "^2.0",
"tomasvotruba/class-leak": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "src"
},
"files": [
"src/functions.php",
"src/GitHubMagicLink/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests"
},
"classmap": [
"stubs"
]
},
"scripts": {
"clear": "php artisan cache:clear && php artisan route:cache && php artisan config:cache && php artisan view:clear",
"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",
"php artisan ide-helper:models 'Rector\\Website\\Ast\\Entity\\AstRun' --write-mixin"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"rector": "vendor/bin/rector process --ansi"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"cweagans/composer-patches": true
}
},
"extra": {
"patches": {
"illuminate/container": [
"https://raw.githubusercontent.com/rectorphp/vendor-patches/main/patches/illuminate-container-container-php.patch"
]
}
}
}