-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
41 lines (41 loc) · 1.1 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
{
"name": "touhidurabir/laravel-stub-generator",
"description": "A laravel package to generate class files from stub files.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Touhidur Rahman",
"email": "abircse06@gmail.com"
}
],
"require": {
"php": ">=7.2.0",
"illuminate/support": "^8.57||^9.0||^10.0||^11.0"
},
"autoload" : {
"psr-4" : {
"Touhidurabir\\StubGenerator\\": "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Touhidurabir\\StubGenerator\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5||^10.0||^11.0",
"orchestra/testbench": "^6.20||^7.0||^8.0",
"illuminate/container": "^8.57||^9.0||^10.0||^11.0"
},
"extra": {
"laravel": {
"providers": [
"Touhidurabir\\StubGenerator\\StubGeneratorServiceProvider"
],
"aliases": {
"ModelRepository": "Touhidurabir\\StubGenerator\\Facades\\StubGenerator"
}
}
}
}