-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
50 lines (50 loc) · 1.19 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
{
"name": "romanzipp/laravel-model-doc",
"description": "Laravel Model PHPDoc Generator",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "romanzipp",
"email": "[email protected]",
"homepage": "https://ich.wtf"
}
],
"require": {
"php": "^8.2",
"illuminate/database": "^11.0",
"illuminate/console": "^11.0",
"illuminate/support": "^11.0",
"phpowermove/docblock": "^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^11.0",
"romanzipp/php-cs-fixer-config": "^3.0"
},
"autoload": {
"psr-4": {
"romanzipp\\ModelDoc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"romanzipp\\ModelDoc\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"romanzipp\\ModelDoc\\Providers\\ModelDocServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}