Skip to content

Commit 63f9756

Browse files
committed
Rename to laratools/ci
1 parent c1f18aa commit 63f9756

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Laratools Docs
22

3-
Documentation for [laratools/laratools](laratools) and [laratools/laravel-ci](laravel-ci).
3+
Documentation for [laratools/laratools](laratools) and [laratools/ci](ci).
44

55
#### Contributing
66

@@ -15,5 +15,5 @@ MIT. See [LICENSE.md](license) file
1515

1616
[license]: LICENSE
1717
[laratools]: https://github.com/laratools/laratools
18-
[laravel-ci]: https://github.com/laratools/laravel-ci
18+
[ci]: https://github.com/laratools/ci
1919
[couscous]: http://couscous.io

laravel-ci/circleci.md renamed to ci/circleci.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
currentMenu: circleci
33
---
44

5-
# Laravel-CI on CircleCI
5+
# Laratools CI on CircleCI
66

77
Here are a few examples on getting up and running using the image on CircleCI.
88
You must be using CircleCI 2.0 otherwise you won't be able to use the docker image.
@@ -27,7 +27,7 @@ jobs:
2727
working_directory: /var/www
2828

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

3232
steps:
3333

@@ -44,7 +44,7 @@ jobs:
4444
4545
## Laravel Mix
4646
47-
The `laratools/laravel-ci` image comes with [nvm](https://github.com/creationix/nvm) installed which allows you to easily install different node versions.
47+
The `laratools/ci` image comes with [nvm](https://github.com/creationix/nvm) installed which allows you to easily install different node versions.
4848

4949
Here we'll install node version 8, install our npm dependencies and then run laravel mix to check our production assets can be built.
5050

@@ -56,7 +56,7 @@ jobs:
5656
working_directory: /var/www
5757
5858
docker:
59-
- image: laratools/laravel-ci:7.1
59+
- image: laratools/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:7.1
102+
- image: laratools/ci:7.1
103103
104104
steps:
105105

laravel-ci/gitlab-ci.md renamed to ci/gitlab-ci.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
currentMenu: gitlab-ci
33
---
44

5-
# Laravel-CI on GitLab CI
5+
# Laratools CI on GitLab CI
66

77
Here are a few examples on getting up and running using the image on GitLab CI.
88

@@ -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:7.1
22+
image: laratools/ci:7.1
2323

2424
before_script:
2525
- composer install --no-progress --no-suggest
@@ -31,12 +31,12 @@ test:
3131
3232
## Laravel Mix
3333
34-
The `laratools/laravel-ci` image comes with [nvm](https://github.com/creationix/nvm) installed which allows you to easily install different node versions.
34+
The `laratools/ci` image comes with [nvm](https://github.com/creationix/nvm) installed which allows you to easily install different node versions.
3535

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:7.1
39+
image: laratools/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:7.1
64+
image: laratools/ci:7.1
6565
6666
before_script:
6767
- composer install --no-progress --no-suggest

laravel-ci/index.md renamed to ci/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ currentMenu: introduction
44

55
# Introduction
66

7-
Laravel CI is a Docker image that's ready to use, out of the box for automated testing with Laravel. That means you can setup Dusk testing within minutes using CircleCI or GitLab CI.
7+
Laratools CI is a Docker image that's ready to use, out of the box for automated testing with Laravel. That means you can setup Dusk testing within minutes using CircleCI or GitLab CI.
88

99
Of course it may be used with any platform that supports Docker, so feel free to submit a PR with a sample config for your platform.
1010

@@ -13,18 +13,18 @@ Of course it may be used with any platform that supports Docker, so feel free to
1313
- [PHP Versions](#php-versions)
1414
- [Pre-Installed Software](#pre-installed-software)
1515
- Platforms
16-
- [CircleCI](/laravel-ci/circleci.html)
17-
- [GitLab CI](/laravel-ci/gitlab-ci.html)
16+
- [CircleCI](/ci/circleci.html)
17+
- [GitLab CI](/ci/gitlab-ci.html)
1818

1919
## PHP Versions
2020

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

23-
* `laratools/laravel-ci:7.0`
24-
* `laratools/laravel-ci:7.1`
25-
* `laratools/laravel-ci:7.2`
23+
* `laratools/ci:7.0`
24+
* `laratools/ci:7.1`
25+
* `laratools/ci:7.2`
2626

27-
You can view the full list on the [docker repository](https://hub.docker.com/r/laratools/laravel-ci/tags/)
27+
You can view the full list on the [docker repository](https://hub.docker.com/r/laratools/ci/tags/)
2828

2929
## Pre-Installed Software
3030

couscous.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ menu:
3232

3333
sections:
3434
ci:
35-
name: Laravel CI
35+
name: Laratools CI
3636
items:
3737
introduction:
3838
text: Introduction
39-
relativeUrl: laravel-ci/
39+
relativeUrl: ci/
4040
circleci:
4141
text: CircleCI
42-
relativeUrl: laravel-ci/circleci.html
42+
relativeUrl: ci/circleci.html
4343
gitlabci:
4444
text: GitLab CI
45-
relativeUrl: laravel-ci/gitlab-ci.html
45+
relativeUrl: ci/gitlab-ci.html

0 commit comments

Comments
 (0)