Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
cdcfffa
Fixed duplicate migration generation issue by passing --no-migration …
vinaydotblog May 19, 2015
3ffbc3e
Optional path parameter for new migrations
Jan 25, 2016
41d7216
fix for path option default value
Jan 26, 2016
0f6c54a
Changed make:migration:schema info message
stamp Mar 23, 2017
5b78070
dumpAutoloads after createModel [Fixes #157]
panstromek Aug 18, 2018
36bb0d8
bigIncrements instead of normal increments
Oct 29, 2019
1990bef
Merge branch 'master' of https://github.com/laracasts/Laravel-5-Gener…
tabacitu Mar 8, 2020
6f5ccea
pivot unsignedBigIntegers like in PR #65 fixes #144
tabacitu Mar 8, 2020
4243432
Merge branch 'master' of git://github.com/Jaspur/Laravel-5-Generators…
tabacitu Mar 8, 2020
ede166a
Merge branch 'Jaspur-master' into v2
tabacitu Mar 8, 2020
77629e9
Merge branch 'patch-1' of git://github.com/panstromek/Laravel-5-Gener…
tabacitu Mar 8, 2020
a81feda
Merge branch 'panstromek-patch-1' into v2
tabacitu Mar 8, 2020
4986a29
Merge branch 'v2' into master
tabacitu Mar 8, 2020
49d8dae
Merge branch 'stamp-master' into v2
tabacitu Mar 8, 2020
67dc4dc
by default don't create a model
tabacitu Mar 8, 2020
cda9a58
update readme to include v2 not generating models by default
tabacitu Mar 8, 2020
5c5092e
fixed merge conflicts
tabacitu Mar 8, 2020
70ad918
Merge branch 'duplicate-migration-bug-fix' of git://github.com/vinniz…
tabacitu Mar 8, 2020
57994eb
Merge branch 'vinnizworld-duplicate-migration-bug-fix' into v2
tabacitu Mar 8, 2020
0a87ed9
Merge branch 'master' into v2
tabacitu Sep 10, 2020
dbe0fc8
shamelessly added myself as author too
tabacitu Sep 10, 2020
5e8bfbb
drop support for Laravel versions under 6
tabacitu Sep 10, 2020
d3a00d3
when generating model, remove --no-migration since it no longer exist…
tabacitu Sep 10, 2020
4250f0b
fix #183 - remove make:seed command and stub
tabacitu Sep 10, 2020
7416fc5
polished readme file
tabacitu Sep 10, 2020
8cc1a95
Update readme.md
tabacitu Sep 10, 2020
86d7c74
add history and maintenance status to readme.md
tabacitu Sep 10, 2020
d6d0928
Update readme.md
tabacitu Sep 10, 2020
ad26bcc
fix #191 - add GIF to readme
tabacitu Sep 10, 2020
95cb49f
Merge branch 'master' of https://github.com/laracasts/Laravel-5-Gener…
tabacitu Sep 10, 2020
061e0fe
travis no longer needs to check for PHP under 7.2 since Laravel 6+ ha…
tabacitu Sep 10, 2020
ed55e9e
ran composer update
tabacitu Sep 10, 2020
34122dd
upgraded phpspec
tabacitu Sep 10, 2020
6fd5b5a
fixed failing unit test
tabacitu Sep 10, 2020
f25e7b1
Merge branch 'v2' of https://github.com/laracasts/Laravel-5-Generator…
tabacitu Sep 10, 2020
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
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
language: php

php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
Expand Down
12 changes: 9 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,26 @@
{
"name": "Jeffrey Way",
"email": "[email protected]"
},
{
"name": "Cristian Tabacitu",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "^5.8|~6.0|~7.0|~8.0"
"illuminate/support": "~6.0|~7.0|~8.0"
},
"require-dev": {
"phpspec/phpspec": "~2.1"
"phpspec/phpspec": "~6.0"
},
"autoload": {
"psr-4": {
"Laracasts\\Generators\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpspec run"
},
"extra": {
"laravel": {
"providers": [
Expand Down
Loading