forked from square/vermillion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.39 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
{
"name": "red-explosion/vermillion",
"description": "API Versioning tools for Laravel apps",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Bezalel Hermoso",
"email": "bezalel@squareup.com"
},
{
"name": "Ben Sherred",
"email": "ben@sherred.co.uk"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/routing": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"orchestra/testbench": "^7.0|^8.0",
"nunomaduro/larastan": "^2.0",
"laravel/pint": "^1.10",
"red-explosion/pint-config": "^1.1"
},
"autoload": {
"psr-4": {
"RedExplosion\\Vermillion\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RedExplosion\\Vermillion\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "./vendor/bin/pint --config vendor/red-explosion/pint-config/pint.json",
"analyse": "./vendor/bin/phpstan analyse",
"test": "./vendor/bin/phpunit tests"
},
"extra": {
"laravel": {
"providers": [
"RedExplosion\\Vermillion\\VermillionServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}