Skip to content

Commit 96e3468

Browse files
committed
Many changes
- Added seeds and schema .sql files - Added scripts in /scripts to help manage databases - Added Eloquent ORM - Improved unit tests
1 parent 154e386 commit 96e3468

21 files changed

+775
-221
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
/vendor
22
/tmp/*
33
!/tmp/.gitkeep
4+
*.sqlite3
5+
*.sublime-workspace

Diff for: composer.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
}
77
},
88
"require": {
9-
"mockery/mockery": "0.9.1",
9+
"illuminate/database": "4.2.7",
1010
"petebrowne/slim-layout-view": "0.3.*",
11-
"phpunit/phpunit": "4.1.4",
1211
"slim/extras": "2.0.3",
1312
"slimcontroller/slimcontroller": "0.4.1"
13+
},
14+
"require-dev": {
15+
"mockery/mockery": "0.9.1",
16+
"phpunit/phpunit": "4.1.4"
1417
}
1518
}

0 commit comments

Comments
 (0)