Skip to content

Commit c17e321

Browse files
committed
Reinventing the wheel. Again.
0 parents  commit c17e321

35 files changed

+7973
-0
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/vendor
2+
/.idea
3+
/.vscode
4+
/nbproject
5+
yarn-error.log
6+
.env
7+
.phpunit.result.cache
8+
.php_cs.cache

.styleci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
preset: laravel

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 PHPJuice
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
All notable changes to `Blueprint` will be documented in this file.
4+
5+
## Version 1.0
6+
7+
### Added
8+
- Everything

composer.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
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"
50+
],
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+
}
57+
}

0 commit comments

Comments
 (0)