This repository has been archived by the owner on Mar 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
74 lines (73 loc) · 1.86 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
{
"name": "sebastiaanluca/laravel-router",
"description": "An organized approach to handling Laravel routes.",
"type": "library",
"keywords": [
"laravel",
"route",
"routing",
"router",
"laravel-router"
],
"homepage": "https://github.com/sebastiaanluca/laravel-router",
"license": "MIT",
"authors": [
{
"name": "Sebastiaan Luca",
"email": "[email protected]",
"homepage": "https://www.sebastiaanluca.com",
"role": "Author"
}
],
"require": {
"php": "^7.3",
"laravel/framework": "^7.0|^8.0"
},
"require-dev": {
"kint-php/kint": "^3.3",
"mockery/mockery": "^1.3",
"orchestra/testbench": "^5.1|^6.0",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"SebastiaanLuca\\Router\\": "src"
},
"files": [
"src/Helpers/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"SebastiaanLuca\\Router\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"SebastiaanLuca\\Router\\RouterServiceProvider"
]
}
},
"scripts": {
"composer-validate": "@composer validate --no-check-all --strict --ansi",
"test": "vendor/bin/phpunit",
"test-lowest": [
"composer update --prefer-lowest --prefer-dist --no-interaction --ansi",
"@test"
],
"test-stable": [
"composer update --prefer-stable --prefer-dist --no-interaction --ansi",
"@test"
],
"check": [
"@composer-validate",
"@test"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}