Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run tests on PHP 8.4 and update test environment #89

Closed
wants to merge 2 commits into from
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ on:
jobs:
PHPUnit:
name: PHPUnit (PHP ${{ matrix.php }})
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
php:
- 8.4
- 8.3
- 8.2
- 8.1
Expand Down
82 changes: 43 additions & 39 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,44 @@
{
"name": "clue/docker-react",
"description": "Async, event-driven access to the Docker Engine API, built on top of ReactPHP.",
"keywords": ["Docker", "container", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-docker",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3",
"clue/json-stream": "^0.1",
"react/event-loop": "^1.2",
"react/http": "^1.11",
"react/promise": "^3.2 || ^2.11 || ^1.3",
"react/promise-stream": "^1.6",
"react/socket": "^1.16",
"react/stream": "^1.4",
"rize/uri-template": "^0.3"
},
"require-dev": {
"clue/caret-notation": "^0.2",
"clue/tar-react": "^0.2",
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
"react/async": "^4.2 || ^3 || ^2"
},
"autoload": {
"psr-4": {
"Clue\\React\\Docker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Docker\\": "tests/"
}
}
}
"name" : "clue/docker-react",
"description" : "Async, event-driven access to the Docker Engine API, built on top of ReactPHP.",
"keywords" : [
"Docker",
"container",
"ReactPHP",
"async"
],
"homepage" : "https://github.com/clue/reactphp-docker",
"license" : "MIT",
"authors" : [{
"name" : "Christian Lück",
"email" : "[email protected]"
}
],
"require" : {
"php" : ">=5.3",
"clue/json-stream" : "^0.1",
"react/event-loop" : "^1.2",
"react/http" : "^1.11",
"react/promise" : "^3.2 || ^2.11 || ^1.3",
"react/promise-stream" : "^1.6",
"react/socket" : "^1.16",
"react/stream" : "^1.4",
"rize/uri-template" : "^0.4"
},
"require-dev" : {
"clue/caret-notation" : "^0.2",
"clue/tar-react" : "^0.2",
"phpunit/phpunit" : "^9.6 || ^5.7 || ^4.8.36",
"react/async" : "^4.2 || ^3 || ^2"
},
"autoload" : {
"psr-4" : {
"Clue\\React\\Docker\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Clue\\Tests\\React\\Docker\\" : "tests/"
}
}
}
Loading