-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
51 lines (51 loc) · 1.24 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
{
"name": "sethphat/eloquent-docs",
"version": "2.0.1",
"description": "Generate PHPDoc scope for your Eloquent models (columns, accessors and more)",
"type": "library",
"require": {
"php": "^8.2|^8.3",
"laravel/framework": "^11",
"doctrine/dbal": "^3.8"
},
"require-dev": {
"fakerphp/faker": "^1.20",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^9",
"phpunit/phpunit": "^10",
"phpunit/php-code-coverage": "^10"
},
"license": "MIT",
"authors": [
{
"name": "Seth Phat",
"email": "me@sethphat.com"
}
],
"extra": {
"laravel": {
"providers": [
"SethPhat\\EloquentDocs\\EloquentDocsServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"SethPhat\\EloquentDocs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SethPhat\\EloquentDocs\\Tests\\": "tests/"
}
},
"scripts": {
"test-coverage": [
"@php vendor/bin/phpunit --coverage-clover coverage.xml"
],
"test": [
"@php vendor/bin/phpunit"
]
},
"minimum-stability": "stable"
}