-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
35 lines (35 loc) · 969 Bytes
/
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
{
"name": "laravie/blueprint",
"description": "API Blueprint documentation generator.",
"keywords": ["blueprint", "api", "laravel", "dingo", "docs"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jason Lewis",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0",
"illuminate/filesystem": "^6.0 || ^7.0 || ^8.0",
"doctrine/annotations": "^1.13.2",
"phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5.13"
},
"autoload": {
"psr-4": {
"Dingo\\Blueprint\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dingo\\Blueprint\\Tests\\": "tests"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}