-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
71 lines (71 loc) · 1.69 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
{
"name": "binafy/laravel-stub",
"description": "Generate stub files easy",
"keywords": [
"binafy",
"milwad",
"laravel",
"framework",
"stub",
"filesystem",
"generate stub",
"laravel stub package",
"laravel package",
"laravel-stub",
"laravel stub",
"laravel stub package",
"laravel stub binafy"
],
"homepage": "https://github.com/binafy/laravel-stub",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"pestphp/pest-plugin-laravel": "1.*|2.*",
"orchestra/testbench": "8.*|9.*"
},
"autoload": {
"psr-4": {
"Binafy\\LaravelStub\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "milwad-dev",
"email": "[email protected]",
"role": "author",
"homepage": "https://github.com/milwad-dev"
},
{
"name": "binafy",
"role": "owner",
"homepage": "https://github.com/binafy"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage-html ./coverage"
},
"extra": {
"laravel": {
"providers": [
"Binafy\\LaravelStub\\Providers\\LaravelStubServiceProvider"
]
}
}
}