forked from laravel-shift/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 820 Bytes
/
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
{
"name": "laravel-shift/blueprint",
"type": "library",
"description": "An expressive, human readable code generation tool.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"symfony/yaml": "^4.3",
"illuminate/console": "^6.0",
"illuminate/filesystem": "^6.0",
"illuminate/support": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"Blueprint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Blueprint\\BlueprintServiceProvider"
]
}
}
}