Skip to content

Commit fb4b301

Browse files
committed
Update dependencies + more
- Update phpunit to 6.0.8 - Update Travis libvips to 8.4.5 - Remove composer.lock (for libraries it is not necessarily recommended to commit the lock file) - Fix `findLoadBuffer` ($filename -> $buffer) - Use `function_exists` instead of comparing versions because it’s easier. - Use `self::` instead of `Image::`. - Fix the `DebugLogger` constructor in the `class.php` example. - Many double-quoted strings replaced with single-quoted strings because it has no variables within to be interpreted. It’s also faster at runtime because they do not need to be parsed.
1 parent eafa6bb commit fb4b301

18 files changed

+219
-4062
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
/vendor
1+
vendor
2+
.idea
3+
composer.lock
24
/docs
35
*.swp

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ php:
88
- 7.1
99

1010
env:
11-
- LIBVIPS=8.4.4
11+
- LIBVIPS=8.4.5
1212

1313
cache:
1414
apt: true

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"psr/log": "^1.0.1"
2323
},
2424
"require-dev": {
25-
"phpunit/phpunit": "^5.5",
26-
"phpdocumentor/phpdocumentor" : "2.*",
27-
"jakub-onderka/php-parallel-lint": "^0.9"
25+
"phpunit/phpunit": "^6.0",
26+
"phpdocumentor/phpdocumentor" : "^2.9",
27+
"jakub-onderka/php-parallel-lint": "^0.9.2"
2828
},
2929
"autoload": {
3030
"psr-4": {

0 commit comments

Comments
 (0)