-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (43 loc) · 1.06 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
{
"name": "shamaseen/laravel-files-generator",
"description": "Generate any kind of File/s from stubs with only a single command, literally, ANY TYPE.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "shamaseen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"laravel/framework": ">6"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.0",
"friendsofphp/php-cs-fixer": "^3.8"
},
"autoload": {
"psr-4": {
"Shamaseen\\Generator\\": "src/",
"Shamaseen\\Generator\\Tests\\": "tests/"
}
},
"autoload-dev": {
"psr-4": {
"JohnDoe\\BlogPackage\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Shamaseen\\Generator\\GeneratorServiceProvider"
],
"aliases": {
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}