Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@ All notable changes to `Blueprint` will be documented in this file.

## Version 1.0

### Added
- Everything

## Version 2.0

- Update deps and code refactor
- Add support for Laravel 7
106 changes: 52 additions & 54 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,57 +1,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": "~5"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"squizlabs/php_codesniffer": "^3.5",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3.0",
"sempro/phpunit-pretty-print": "^1.0",
"phpstan/phpstan": "^0.11.5"
},
"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",
"phpcs": [
"phpcs src --standard=PSR2 --extensions=php --encoding=utf-8"
"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"
],
"phpcbf": "phpcbf src --standard=PSR2 --extensions=php --encoding=utf-8",
"analyse": "phpstan analyse src",
"php-cs-fixer": [
"php-cs-fixer fix src --rules=@Symfony,@PSR2"
]
}
"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"
}
}
Loading