-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.06 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
{
"name": "gerfey/laravel-param-converter",
"description": "Adding the ability to work with Symfony ParamConverter in Laravel.",
"license": "MIT",
"homepage": "https://vk.com/gerfey",
"keywords": ["Gerfey", "laravel", "param-converter"],
"authors": [
{
"name": "Alexander Levchenkov",
"email": "sanjia@live.ru",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^8 || ^9 || ^10",
"sensio/framework-extra-bundle": "^6"
},
"autoload": {
"psr-4": {
"Gerfey\\LaravelParamConverter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gerfey\\LaravelParamConverter\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev"
},
"laravel": {
"providers": [
"Gerfey\\LaravelParamConverter\\LaravelParamConverterServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}