-
Notifications
You must be signed in to change notification settings - Fork 106
/
composer.json
72 lines (72 loc) · 2.21 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
{
"name": "rakutentech/laravel-request-docs",
"description": "Automatically generate Laravel docs from request rules, controllers and routes",
"keywords": [
"rakutentech",
"laravel",
"laravel-request-docs"
],
"homepage": "https://github.com/rakutentech/laravel-request-docs",
"license": "MIT",
"authors": [
{
"name": "Pulkit Kathuria",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0|^8.1|^8.2|^8.3",
"illuminate/contracts": "^8.37|^9.0|^10.0|^11.0",
"kitloong/laravel-app-logger": "^1.0",
"spatie/laravel-package-tools": "^1.4.3",
"ext-json": "*"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.12|dev-master",
"brianium/paratest": "^6.2|^7.4",
"friendsofphp/php-cs-fixer": "^3.5",
"larastan/larastan": "^1.0|^2.0",
"nunomaduro/collision": "^5.3|^6.0|^8.0",
"orchestra/testbench": "^6.15|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.3|^10.5",
"slevomat/coding-standard": "^8.15",
"spatie/laravel-ray": "^1.23",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.8|^5.6"
},
"autoload": {
"psr-4": {
"Rakutentech\\LaravelRequestDocs\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rakutentech\\LaravelRequestDocs\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "phpstan analyse",
"phpcs": "phpcs",
"test": "testbench package:test --parallel --no-coverage",
"test-coverage": "phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Rakutentech\\LaravelRequestDocs\\LaravelRequestDocsServiceProvider"
],
"aliases": {
"LaravelRequestDocs": "Rakutentech\\LaravelRequestDocs\\LaravelRequestDocsFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}