Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit c79eb3f

Browse files
authored
Merge pull request #339 from swooletw/develop
Develop
2 parents 8b6ffc0 + eaa325e commit c79eb3f

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ matrix:
1212
env: FRAMEWORK_VERSION=laravel/framework:5.7.*
1313
- php: 7.2
1414
env: FRAMEWORK_VERSION=laravel/framework:5.8.*
15+
- php: 7.2
16+
env: FRAMEWORK_VERSION=laravel/framework:6.0.*
1517
- php: 7.2
1618
env: FRAMEWORK_VERSION=laravel/lumen-framework:5.5.*
1719
- php: 7.2

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
],
2323
"require": {
2424
"php": "^7.2",
25-
"illuminate/console": "~5.4",
26-
"illuminate/contracts": "~5.4",
27-
"illuminate/http": "~5.4",
28-
"illuminate/support": "~5.4",
25+
"illuminate/console": "~5.4|~6.0",
26+
"illuminate/contracts": "~5.4|~6.0",
27+
"illuminate/http": "~5.4|~6.0",
28+
"illuminate/support": "~5.4|~6.0",
2929
"predis/predis": "^1.1"
3030
},
3131
"require-dev": {
32-
"laravel/lumen-framework": "~5.4",
32+
"laravel/lumen-framework": "~5.4|~6.0",
3333
"phpunit/phpunit": "^7.5",
3434
"phpunit/php-code-coverage": "^6.1",
3535
"php-coveralls/php-coveralls": "^2.1",

src/HotReload/FSEventParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
class FSEventParser
1111
{
12-
protected const REGEX = '/^([\S+]{3}\s+[\S+]{3}\s+[\d+]{1,2}\s+[\d+]{2}:[\d+]{2}:{0,2}:[\d+]{2}:{0,2}\s+[\d+]{0,4})\s*(\/[\S+]*)\s+([\S+*\s+]*)/mi';
12+
protected const REGEX = '/^([\S+]{3}\s+[^\/]*)\s(\/[\S+]*)\s+([\S+*\s+]*)/mi';
1313

1414
protected const DATE = 1;
1515
protected const PATH = 2;

0 commit comments

Comments
 (0)