-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.91 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
{
"name": "1970mr/laravel-redirector",
"description": "A Laravel package for managing URL redirects easily and efficiently.",
"keywords": [
"Mr1970",
"1970Mr",
"laravel-redirector",
"redirector",
"redirect",
"redirects",
"url",
"route",
"routing",
"management",
"package",
"laravel"
],
"type": "library",
"homepage": "https://github.com/1970Mr/laravel-redirector",
"license": "MIT",
"autoload": {
"psr-4": {
"Mr1970\\LaravelRedirector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mr1970\\LaravelRedirector\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Mr 1970",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/contracts": "^11.0||^10.0"
},
"require-dev": {
"larastan/larastan": "2.9",
"laravel/pint": "^1.17",
"orchestra/testbench": "^9.0.0||^8.22.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "*",
"phpstan/phpstan-mockery": "^1.1",
"phpunit/phpunit": "^11.0||^10.0"
},
"scripts": {
"test": "phpunit --colors=always",
"analyse": "vendor/bin/phpstan analyse",
"pint": "vendor/bin/pint"
},
"extra": {
"laravel": {
"providers": [
"Mr1970\\LaravelRedirector\\RedirectorServiceProvider"
],
"aliases": [
"Redirector", "Mr1970\\LaravelRedirector\\Facades\\Redirector"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}