forked from laravel-shift/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "laravel-shift/blueprint",
"type": "library",
"description": "An expressive, human readable code generation tool.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"symfony/yaml": "^4.3|^5.0",
"illuminate/console": "^6.0|^7.0",
"illuminate/filesystem": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0",
"doctrine/dbal": "^2.9"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"mockery/mockery": "^1.3",
"orchestra/testbench": "^4.0|^5.0"
},
"autoload": {
"psr-4": {
"Blueprint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Blueprint\\BlueprintServiceProvider"
]
}
},
"suggest": {
"jasonmccreary/laravel-test-assertions": "Required to use additional assertions in generated tests (^1.0)."
}
}