Skip to content

Commit cbd7dc1

Browse files
committed
Use latest stable PHP version in examples
1 parent c018e6c commit cbd7dc1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

laravel-ci/circleci.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
working_directory: /var/www
2828

2929
docker:
30-
- image: laratools/laravel-ci:latest
30+
- image: laratools/laravel-ci:7.1
3131

3232
steps:
3333

@@ -56,7 +56,7 @@ jobs:
5656
working_directory: /var/www
5757
5858
docker:
59-
- image: laratools/laravel-ci:latest
59+
- image: laratools/laravel-ci:7.1
6060
6161
steps:
6262
@@ -99,7 +99,7 @@ jobs:
9999
working_directory: /var/www
100100
101101
docker:
102-
- image: laratools/laravel-ci:latest
102+
- image: laratools/laravel-ci:7.1
103103
104104
steps:
105105

laravel-ci/gitlab-ci.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This is the minimal setup you'll need to get your unit tests running.
1919
> 💡 Don't forget to choose the correct image you need for your project's PHP version requirement
2020
2121
```yaml
22-
image: laratools/laravel-ci:latest
22+
image: laratools/laravel-ci:7.1
2323

2424
before_script:
2525
- composer install --no-progress --no-suggest
@@ -36,7 +36,7 @@ The `laratools/laravel-ci` image comes with [nvm](https://github.com/creationix/
3636
Here we'll install node version 8, install our npm dependencies and then run laravel mix to check our production assets can be built.
3737

3838
```yaml
39-
image: laratools/laravel-ci:latest
39+
image: laratools/laravel-ci:7.1
4040
4141
before_script:
4242
- composer install --no-progress --no-suggest
@@ -61,7 +61,7 @@ Defining them means GitLab CI will store them once the build has finished for yo
6161
In this case, it means you can see what the browser was doing if the tests fail.
6262

6363
```yaml
64-
image: laratools/laravel-ci:latest
64+
image: laratools/laravel-ci:7.1
6565
6666
before_script:
6767
- composer install --no-progress --no-suggest

laravel-ci/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Of course it may be used with any platform that supports Docker, so feel free to
1818

1919
## PHP Versions
2020

21-
There are several images based on the PHP version you require. Currently we support `7.0`, `7.1` and `7.2-beta`.
21+
There are several images based on the PHP version you require. Currently we support `7.0`, `7.1` and `7.2`.
2222

2323
* `laratools/laravel-ci:7.0`
2424
* `laratools/laravel-ci:7.1`

0 commit comments

Comments
 (0)