Skip to content

Commit 673b8a2

Browse files
committed
Initial commit
0 parents  commit 673b8a2

File tree

7 files changed

+4571
-0
lines changed

7 files changed

+4571
-0
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/node_modules
2+
/public/hot
3+
/public/storage
4+
/storage/*.key
5+
/vendor
6+
.env
7+
.env.backup
8+
.phpunit.result.cache
9+
Homestead.json
10+
Homestead.yaml
11+
npm-debug.log
12+
yarn-error.log

composer.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "nullthoughts/laravel-latest-relation",
3+
"description": "Eloquent macros for querying latest HasMany relationship in Laravel",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Jani Gyllenberg",
8+
"email": "[email protected]"
9+
}
10+
],
11+
"require": {},
12+
"require-dev": {
13+
"orchestra/testbench": "^4.0"
14+
},
15+
"autoload": {
16+
"psr-4": {
17+
"LaravelLatestRelation\\": "src"
18+
}
19+
},
20+
"autoload-dev": {
21+
"psr-4": {
22+
"Tests\\": "tests/"
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)