-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.49 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
{
"name": "phpjuice/blueprint",
"description": "Blueprint is a powerful CRUD generator to speed up the development of your laravel apps.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/phpjuice/blueprint",
"keywords": [
"Laravel",
"Blueprint",
"crud"
],
"require": {
"illuminate/support": "^7.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"PHPJuice\\Blueprint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPJuice\\Blueprint\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"PHPJuice\\Blueprint\\BlueprintServiceProvider"
],
"aliases": {
"Blueprint": "PHPJuice\\Blueprint\\Facades\\Blueprint"
}
}
},
"scripts": {
"test": "phpunit",
"style-fix": [
"phpcs src --standard=PSR2 --extensions=php --encoding=utf-8",
"phpcbf src --standard=PSR2 --extensions=php --encoding=utf-8",
"php-cs-fixer fix src --rules=@Symfony,@PSR2"
],
"analyse": "phpstan analyse src"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "5.12.1",
"phpstan/phpstan": "^0.12.64",
"phpunit/phpunit": "^9.5",
"sempro/phpunit-pretty-print": "^1.3",
"squizlabs/php_codesniffer": "^3.5"
}
}