Skip to content

Commit 51da3b2

Browse files
author
Erik Galloway
committed
Upload eloquent-phpunit
1 parent 868038b commit 51da3b2

File tree

9 files changed

+3111
-0
lines changed

9 files changed

+3111
-0
lines changed

.gitignore

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

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "erikgall/eloquent-phpunit",
3+
"description": "Test Eloquent models, database tables, relationships, etc. using PHPUnit.",
4+
"authors": [
5+
{
6+
"name": "Erik Galloway",
7+
"email": "erik@mybarnapp.com"
8+
}
9+
],
10+
"require": {
11+
"php": ">=7.0.0",
12+
"laravel/framework": "5.3.*-dev",
13+
"doctrine/dbal": "^2.5"
14+
},
15+
"autoload": {
16+
"psr-4": {
17+
"EGALL\\EloquentPHPUnit\\": "src/"
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)