Skip to content

Commit eef1e42

Browse files
Merge branch 'master' into ci-tidyup
2 parents 14565cb + 035707b commit eef1e42

File tree

2 files changed

+30
-33
lines changed

2 files changed

+30
-33
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ However, if you want to log when the JIT loader is used so that you can do back
9898
class Address extends Model
9999
{
100100
use AutoloadsRelationships;
101-
public $timestamps = false;
102101

103102
/**
104103
* @var string

composer.json

Lines changed: 30 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,37 @@
11
{
2-
"name": "liam-wiltshire/laravel-jit-loader",
3-
"description": "Just In Time relationship loader for Laravel",
4-
"license": "MIT",
5-
"authors": [
6-
{
7-
"name": "Liam Wiltshire",
8-
"email": "liam@w.iltshi.re"
9-
}
10-
],
11-
"require": {
12-
"php": ">=7.1.0",
13-
"illuminate/database": "^5.5.0"
14-
},
15-
"require-dev": {
16-
"phpunit/phpunit": "^7.0.0",
17-
"squizlabs/php_codesniffer" : "^3.0.0",
18-
"phpunit/php-code-coverage": "^6.0.0",
19-
"illuminate/log": "^5.5.0"
20-
},
21-
"autoload": {
22-
"psr-4": {
23-
"LiamWiltshire\\LaravelJitLoader\\": "src/"
24-
}
25-
},
26-
"autoload-dev": {
27-
"psr-4": {
28-
"LiamWiltshire\\LaravelJitLoader\\Tests\\": "tests/"
29-
}
30-
},
31-
"scripts": {
2+
"name": "liam-wiltshire/laravel-jit-loader",
3+
"description": "Just In Time relationship loader for Laravel",
4+
"license": "MIT",
5+
"authors": [{
6+
"name": "Liam Wiltshire",
7+
"email": "liam@w.iltshi.re"
8+
}],
9+
"require": {
10+
"php": ">=7.1.0",
11+
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
12+
},
13+
"require-dev": {
14+
"phpunit/phpunit": "^7.0.0",
15+
"squizlabs/php_codesniffer": "^3.0.0",
16+
"phpunit/php-code-coverage": "^6.0.0",
17+
"illuminate/log": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"LiamWiltshire\\LaravelJitLoader\\": "src/"
22+
}
23+
},
24+
"autoload-dev": {
25+
"psr-4": {
26+
"LiamWiltshire\\LaravelJitLoader\\Tests\\": "tests/"
27+
}
28+
},
29+
"scripts": {
3230
"test": [
3331
"./vendor/bin/phpunit",
3432
"./vendor/bin/phpcs --standard=PSR2 src/",
3533
"php tests/CoverageCheck.php tests/clover.xml 95"
3634
]
37-
},
38-
"minimum-stability": "stable"
35+
},
36+
"minimum-stability": "stable"
3937
}

0 commit comments

Comments
 (0)