Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jul 16, 2019
1 parent 539d085 commit 8a23b99
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: php

php:
- 7.0
- 7.1
- 7.2
- 7.3

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `temporary-directory` will be documented in this file

## 1.2.0 - 2019-09-16

- drop support for PHP 7.1 and below

## 1.1.5 - 2019-09-16

- make sure unique directories are created under heavy load
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
}
],
"require": {
"php": "^7.0"
"php": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^6.3"
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
Expand Down
1 change: 0 additions & 1 deletion tests/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion tests/TemporaryDirectoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class TemporaryDirectoryTest extends TestCase
/** @var string */
protected $temporaryDirectoryFullPath;

public function setUp()
public function setUp(): void
{
parent::setUp();

Expand Down

0 comments on commit 8a23b99

Please sign in to comment.