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

Forward compatibility with Promise v3 #80

Merged
merged 1 commit into from Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -99,7 +99,7 @@ $factory->createClient('user:secret@localhost')->then(function (Clue\React\Ami\C
});
```

See also the [examples](examples).
See also the [examples](examples/).

## Usage

Expand Down Expand Up @@ -557,7 +557,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require clue/ami-react:^1.1
composer require clue/ami-react:^1.1
```

See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
Expand All @@ -572,13 +572,13 @@ To run the test suite, you first need to clone this repo and then install all
dependencies [through Composer](https://getcomposer.org/):

```bash
$ composer install
composer install
```

To run the test suite, go to the project root and run:

```bash
$ vendor/bin/phpunit
vendor/bin/phpunit
```

The test suite contains both unit tests and functional integration tests.
Expand All @@ -588,7 +588,7 @@ If you want to also run the functional tests, you need to supply *your* AMI logi
details in an environment variable like this:

```bash
$ LOGIN=username:password@localhost php vendor/bin/phpunit
LOGIN=username:password@localhost php vendor/bin/phpunit
```

## License
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Expand Up @@ -14,11 +14,11 @@
"php": ">=5.3",
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
"react/event-loop": "^1.2",
"react/promise": "^2.0 || ^1.1",
"react/socket": "^1.9"
"react/promise": "^3.0 || ^2.9 || ^1.1",
"react/socket": "^1.14"
},
"require-dev": {
"clue/block-react": "^1.2",
"clue/block-react": "^1.5",
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
"autoload": {
Expand Down