You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,12 @@
2
2
3
3
> Classes that are used by the classes generated by the [PackageGenerator](https://github.com/WsdlToPhp/PackageGenerator) project to ease the SoapClient UX.
## Testing using [Docker](https://www.docker.com/)
317
318
Thanks to the [Docker image](https://hub.docker.com/r/splitbrain/phpfarm) of [phpfarm](https://github.com/fpoirotte/phpfarm), tests can be run locally under *any* PHP version using the cli:
318
-
- php-5.4
319
-
- php-5.5
320
-
- php-5.6
321
-
- php-7.0
322
-
- php-7.1
323
-
- php-7.2
324
-
- php-7.3
319
+
- php-7.4
325
320
326
321
First of all, you need to create your container which you can do using [docker-compose](https://docs.docker.com/compose/) by running the below command line from the root directory of the project:
327
322
```bash
@@ -331,7 +326,15 @@ $ docker-compose up -d --build
331
326
You then have a container named `package_base` in which you can run `composer` commands and `php cli` commands such as:
332
327
```bash
333
328
# install deps in container (using update ensure it does use the composer.lock file if there is any)
The main change, apart from requiring PHP >= 7.4, is that `Utils` and `AbstractSoapClientBase` method `getFormatedXml` has been renamed to `getFormattedXml` (typo fix).
0 commit comments