-
Notifications
You must be signed in to change notification settings - Fork 59
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
1 parent
48473d8
commit ea92c89
Showing
26 changed files
with
83 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 Fernando <[email protected]> | ||
Copyright (c) 2017 Fernando <[email protected]>, Summer <[email protected]>. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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,25 +1,30 @@ | ||
{ | ||
"name": "laralib/l5scaffold", | ||
"description": "Extend Laravel 5's generators scaffold.", | ||
"name": "summerblue/generator", | ||
"description": "Extend Laravel 5.3's generators scaffold.", | ||
"keywords": ["laravel", "generators", "scaffold" , "laravel5"], | ||
"license": "MIT", | ||
"minimum-stability": "dev", | ||
"authors": [ | ||
{ | ||
"name": "Fernando Brito", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Summer", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.4.0" | ||
"php": ">=5.4.0", | ||
"laravel/framework": "5.3.*", | ||
}, | ||
"require-dev": { | ||
"laravel/laravel": "dev-master", | ||
"phpunit/phpunit": "^5.4" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Laralib\\L5scaffold\\": "src/" | ||
"Summerblue\\Generator\\": "src/" | ||
} | ||
} | ||
} |
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
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
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,10 +1,10 @@ | ||
<?php | ||
|
||
namespace Laralib\L5scaffold\Localizations; | ||
namespace Summerblue\Generator\Localizations; | ||
|
||
/** | ||
* Class SchemaParser | ||
* @package Laralib\L5scaffold\Migrations | ||
* @package Summerblue\Generator\Migrations | ||
* @author Ryan Gurnick <[email protected]> | ||
*/ | ||
class SchemaParser | ||
|
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,10 +1,10 @@ | ||
<?php | ||
|
||
namespace Laralib\L5scaffold\Localizations; | ||
namespace Summerblue\Generator\Localizations; | ||
|
||
/** | ||
* Class SyntaxBuilder | ||
* @package Laralib\L5scaffold\Migrations | ||
* @package Summerblue\Generator\Migrations | ||
* @author Ryan Gurnick <[email protected]> | ||
*/ | ||
class SyntaxBuilder | ||
|
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
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
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
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
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
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,10 +1,10 @@ | ||
<?php | ||
|
||
namespace Laralib\L5scaffold\Migrations; | ||
namespace Summerblue\Generator\Migrations; | ||
|
||
/** | ||
* Class NameParser | ||
* @package Laralib\L5scaffold\Migrations with modifications by Fernando | ||
* @package Summerblue\Generator\Migrations with modifications by Fernando | ||
* @author Jeffrey Way <[email protected]> | ||
*/ | ||
class NameParser | ||
|
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,10 +1,10 @@ | ||
<?php | ||
|
||
namespace Laralib\L5scaffold\Migrations; | ||
namespace Summerblue\Generator\Migrations; | ||
|
||
/** | ||
* Class SchemaParser with modifications by Fernando | ||
* @package Laralib\L5scaffold\Migrations | ||
* @package Summerblue\Generator\Migrations | ||
* @author Jeffrey Way <[email protected]> | ||
*/ | ||
class SchemaParser | ||
|
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,13 +1,13 @@ | ||
<?php | ||
|
||
namespace Laralib\L5scaffold\Migrations; | ||
namespace Summerblue\Generator\Migrations; | ||
|
||
use Laralib\L5scaffold\GeneratorException; | ||
use Summerblue\Generator\GeneratorException; | ||
|
||
|
||
/** | ||
* Class SyntaxBuilder with modifications by Fernando | ||
* @package Laralib\L5scaffold\Migrations | ||
* @package Summerblue\Generator\Migrations | ||
* @author Jeffrey Way <[email protected]> | ||
*/ | ||
class SyntaxBuilder | ||
|
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,10 +1,10 @@ | ||
<?php | ||
|
||
namespace Laralib\L5scaffold\Validators; | ||
namespace Summerblue\Generator\Validators; | ||
|
||
/** | ||
* Class SchemaParser | ||
* @package Laralib\L5scaffold\Migrations | ||
* @package Summerblue\Generator\Migrations | ||
* @author Ryan Gurnick <[email protected]> | ||
*/ | ||
class SchemaParser | ||
|
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,10 +1,10 @@ | ||
<?php | ||
|
||
namespace Laralib\L5scaffold\Validators; | ||
namespace Summerblue\Generator\Validators; | ||
|
||
/** | ||
* Class SyntaxBuilder | ||
* @package Laralib\L5scaffold\Migrations | ||
* @package Summerblue\Generator\Migrations | ||
* @author Ryan Gurnick <[email protected]> | ||
*/ | ||
class SyntaxBuilder | ||
|
Oops, something went wrong.