Skip to content

Commit 1f56591

Browse files
authored
add support to laravel 7 (#2)
1 parent 8149fcc commit 1f56591

14 files changed

+3249
-2007
lines changed

changelog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@ All notable changes to `Blueprint` will be documented in this file.
44

55
## Version 1.0
66

7-
### Added
87
- Everything
8+
9+
## Version 2.0
10+
11+
- Update deps and code refactor
12+
- Add support for Laravel 7

composer.json

Lines changed: 52 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,55 @@
11
{
2-
"name": "phpjuice/blueprint",
3-
"description": "Blueprint is a powerful CRUD generator to speed up the development of your laravel apps.",
4-
"type": "library",
5-
"license": "MIT",
6-
"homepage": "https://github.com/phpjuice/blueprint",
7-
"keywords": [
8-
"Laravel",
9-
"Blueprint",
10-
"crud"
11-
],
12-
"require": {
13-
"illuminate/support": "~5"
14-
},
15-
"require-dev": {
16-
"phpunit/phpunit": "~7.0",
17-
"squizlabs/php_codesniffer": "^3.5",
18-
"mockery/mockery": "^1.1",
19-
"orchestra/testbench": "~3.0",
20-
"sempro/phpunit-pretty-print": "^1.0",
21-
"phpstan/phpstan": "^0.11.5"
22-
},
23-
"config": {
24-
"sort-packages": true
25-
},
26-
"autoload": {
27-
"psr-4": {
28-
"PHPJuice\\Blueprint\\": "src/"
29-
}
30-
},
31-
"autoload-dev": {
32-
"psr-4": {
33-
"PHPJuice\\Blueprint\\Tests\\": "tests"
34-
}
35-
},
36-
"extra": {
37-
"laravel": {
38-
"providers": [
39-
"PHPJuice\\Blueprint\\BlueprintServiceProvider"
40-
],
41-
"aliases": {
42-
"Blueprint": "PHPJuice\\Blueprint\\Facades\\Blueprint"
43-
}
44-
}
45-
},
46-
"scripts": {
47-
"test": "phpunit",
48-
"phpcs": [
49-
"phpcs src --standard=PSR2 --extensions=php --encoding=utf-8"
2+
"name": "phpjuice/blueprint",
3+
"description": "Blueprint is a powerful CRUD generator to speed up the development of your laravel apps.",
4+
"type": "library",
5+
"license": "MIT",
6+
"homepage": "https://github.com/phpjuice/blueprint",
7+
"keywords": [
8+
"Laravel",
9+
"Blueprint",
10+
"crud"
5011
],
51-
"phpcbf": "phpcbf src --standard=PSR2 --extensions=php --encoding=utf-8",
52-
"analyse": "phpstan analyse src",
53-
"php-cs-fixer": [
54-
"php-cs-fixer fix src --rules=@Symfony,@PSR2"
55-
]
56-
}
12+
"require": {
13+
"illuminate/support": "^7.0"
14+
},
15+
"config": {
16+
"sort-packages": true
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"PHPJuice\\Blueprint\\": "src/"
21+
}
22+
},
23+
"autoload-dev": {
24+
"psr-4": {
25+
"PHPJuice\\Blueprint\\Tests\\": "tests"
26+
}
27+
},
28+
"extra": {
29+
"laravel": {
30+
"providers": [
31+
"PHPJuice\\Blueprint\\BlueprintServiceProvider"
32+
],
33+
"aliases": {
34+
"Blueprint": "PHPJuice\\Blueprint\\Facades\\Blueprint"
35+
}
36+
}
37+
},
38+
"scripts": {
39+
"test": "phpunit",
40+
"style-fix": [
41+
"phpcs src --standard=PSR2 --extensions=php --encoding=utf-8",
42+
"phpcbf src --standard=PSR2 --extensions=php --encoding=utf-8",
43+
"php-cs-fixer fix src --rules=@Symfony,@PSR2"
44+
],
45+
"analyse": "phpstan analyse src"
46+
},
47+
"require-dev": {
48+
"mockery/mockery": "^1.4",
49+
"orchestra/testbench": "5.12.1",
50+
"phpstan/phpstan": "^0.12.64",
51+
"phpunit/phpunit": "^9.5",
52+
"sempro/phpunit-pretty-print": "^1.3",
53+
"squizlabs/php_codesniffer": "^3.5"
54+
}
5755
}

0 commit comments

Comments
 (0)