-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
3,249 additions
and
2,007 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Oops, something went wrong.