Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ php:
- '7.1'
- '7.2'
- '7.3'
- '7.4'
- 'nightly'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would drop this to make tests pass. There is actually no need to test against PHP 8.0 imho

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point. I moved nightly to allow failures


jobs:
allow_failures:
- php: nightly

install:
- composer install
Expand Down
10 changes: 7 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@
}
],
"autoload": {
"psr-0": {
"Flow\\JSONPath": "src/",
"Flow\\JSONPath\\Test": "tests/"
"psr-4": {
"Flow\\JSONPath\\": "src/Flow/JSONPath/"
}
},
"autoload-dev": {
"psr-4": {
"Flow\\JSONPath\\Test\\": "tests/"
}
},
"require": {
Expand Down