Skip to content

Commit

Permalink
Reinventing the wheel. Again.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhdcodes committed Mar 30, 2020
0 parents commit c17e321
Show file tree
Hide file tree
Showing 35 changed files with 7,973 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/vendor
/.idea
/.vscode
/nbproject
yarn-error.log
.env
.phpunit.result.cache
.php_cs.cache
1 change: 1 addition & 0 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
preset: laravel
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 PHPJuice

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

All notable changes to `Blueprint` will be documented in this file.

## Version 1.0

### Added
- Everything
57 changes: 57 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"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"
],
"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"
]
}
}
Loading

0 comments on commit c17e321

Please sign in to comment.