forked from laravel-shift/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.23 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
{
"name": "laravel-shift/blueprint",
"type": "library",
"description": "An expressive, human readable code generation tool.",
"keywords": [
"framework",
"laravel",
"code generation"
],
"license": "MIT",
"require": {
"doctrine/dbal": "^3.3",
"illuminate/console": "^10.0",
"illuminate/filesystem": "^10.0",
"illuminate/support": "^10.0",
"laravel-shift/faker-registry": "^0.2.0",
"symfony/yaml": "^6.2"
},
"require-dev": {
"laravel/pint": "^1.2",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0"
},
"suggest": {
"jasonmccreary/laravel-test-assertions": "Required to use additional assertions in generated tests (^1.0)."
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Blueprint\\BlueprintServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Blueprint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}