Skip to content

Commit 494f8fb

Browse files
committed
DX-104 : Adding asynchronous requests to client api
1 parent eecceb2 commit 494f8fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1380
-535
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ phpspec.yml
66
phpunit.xml
77
.php_cs.cache
88
.php-cs-fixer.cache
9+
10+
### PhpStorm ###
11+
.idea

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
DOCKER_RUN = DOCKER_BUILDKIT=1 docker-compose run php_client
1+
DOCKER_RUN ?= DOCKER_BUILDKIT=1 docker-compose run php_client
22

33
.PHONY: help
44
help:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Matrix compatibility:
1111
| v2.3 | v3.0 | [![Build Status](https://travis-ci.org/akeneo/api-php-client.svg?branch=3.0)](https://travis-ci.org/akeneo/api-php-client) |
1212
| v3.0 - v4.0 | v4.0 - v5.0 | [![Build Status](https://travis-ci.org/akeneo/api-php-client.svg?branch=4.0)](https://travis-ci.org/akeneo/api-php-client) |
1313
| v5.0 | v6.0 | - |
14-
| v6.0 | v7.0 to v9.1 | - |
14+
| v6.0 | >= v7.0 | - |
1515
| - | master | [![CircleCI](https://circleci.com/gh/akeneo/api-php-client/tree/master.svg?style=svg)](https://circleci.com/gh/akeneo/api-php-client/tree/master) |
1616

1717
Note that our PHP client is backward compatible.

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
"bin-dir": "bin",
4646
"platform": {
4747
"php": "8.0"
48+
},
49+
"allow-plugins": {
50+
"php-http/discovery": false
4851
}
4952
},
5053
"suggest": {

0 commit comments

Comments
 (0)