-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
79 lines (79 loc) · 2.07 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "codedungeon/laravel-craftsman",
"version": "1.12.0",
"description": "Laravel Craftsman",
"keywords": [
"cli",
"make",
"laravel",
"console",
"artisan",
"generator",
"framework",
"laravel zero",
"phpunit",
"pest",
"scaffold"
],
"homepage": "https://laravel-craftsman.com",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/mikeerickson/laravel-craftsman/issues",
"source": "https://github.com/mikeerickson/laravel-craftsman"
},
"authors": [
{
"name": "Mike Erickson",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"codedungeon/php-messenger": "^1.0",
"codedungeon/phpunit-result-printer": "^0.27",
"illuminate/log": "5.8.*",
"laravel-zero/framework": "5.8.*",
"mustache/mustache": "^2.12",
"nunomaduro/laravel-console-menu": "^2.1",
"nunomaduro/phpinsights": "^1.9",
"padraic/phar-updater": "^1.0.6",
"phpunit/phpunit": "^8.1"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^0.12.10",
"spatie/phpunit-watcher": "^1.8"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"test:ci": "vendor/bin/phpunit -c phpunit.ci.xml",
"test:feature": "vendor/bin/phpunit --testsuite Feature --colors=always",
"test:unit": "vendor/bin/phpunit --testsuite Unit --colors=always",
"post-create-project-cmd": [
"@php application app:rename"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"builds/laravel-craftsman"
]
}