Skip to content

Commit 3fbfc86

Browse files
committed
Renaming the repository.
1 parent e2f5477 commit 3fbfc86

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A project to test your [Codingame](https://www.codingame.com/) PHP code. It is not intended to have solutions.
44
It only contains PHPUnit tests to let you code in your favorite IDE, outside of the Codingame web site.
55

6-
[![License](https://img.shields.io/github/license/cyrilverloop/codingame)](https://github.com/cyrilverloop/codingame/blob/trunk/LICENSE)
6+
[![License](https://img.shields.io/github/license/cyrilverloop/codingame-php-tests)](https://github.com/cyrilverloop/codingame-php-tests/blob/trunk/LICENSE)
77
[![PHP version](https://img.shields.io/badge/php-%3D7.3-%23777BB4?logo=php&style=flat)](https://www.php.net/)
88

99

@@ -12,14 +12,14 @@ It only contains PHPUnit tests to let you code in your favorite IDE, outside of
1212
Downloading the project :
1313
```shellsession
1414
user@host ~$ cd [PATH_WHERE_TO_PUT_THE_PROJECT] # E.g. ~/projects/
15-
user@host projects$ git clone https://github.com/cyrilverloop/codingame.git
16-
user@host projects$ cd codingame
15+
user@host projects$ git clone https://github.com/cyrilverloop/codingame-php-tests.git
16+
user@host projects$ cd codingame-php-tests
1717
```
1818

1919
Installing the dependencies :
2020
```shellsession
21-
user@host codingame$ docker compose run --rm app composer install -o
22-
user@host codingame$ docker compose run --rm app phive install --trust-gpg-keys 4AA394086372C20A,12CE0F1D262429A5,31C7E470E2138192
21+
user@host codingame-php-tests$ docker compose run --rm app composer install -o
22+
user@host codingame-php-tests$ docker compose run --rm app phive install --trust-gpg-keys 4AA394086372C20A,12CE0F1D262429A5,31C7E470E2138192
2323
```
2424

2525

@@ -28,7 +28,7 @@ user@host codingame$ docker compose run --rm app phive install --trust-gpg-keys
2828
Every classes in `./src/**/*.dist` files have an `execute()` method with the default Codingame code.
2929
To try a puzzle, copy the corresponding file and change the extension to `php` :
3030
```shellsession
31-
user@host codingame$ cp ./src/Training/Easy/Unary/Unary.dist ./src/Training/Easy/Unary/Unary.php
31+
user@host codingame-php-tests$ cp ./src/Training/Easy/Unary/Unary.dist ./src/Training/Easy/Unary/Unary.php
3232
```
3333
Then, add your code to solve the puzzle.
3434

@@ -39,17 +39,17 @@ Then, add your code to solve the puzzle.
3939

4040
Executing all the tests :
4141
```shellsession
42-
user@host codingame$ docker compose run --rm app ./tools/phpunit -c ./ci/phpunit.dist.xml
42+
user@host codingame-php-tests$ docker compose run --rm app ./tools/phpunit -c ./ci/phpunit.dist.xml
4343
```
4444

4545
Executing tests for a particular puzzle or a test case :
4646
```shellsession
47-
user@host codingame$ docker compose run --rm app ./tools/phpunit -c ./ci/phpunit.dist.xml --group [GROUP_NAME]
47+
user@host codingame-php-tests$ docker compose run --rm app ./tools/phpunit -c ./ci/phpunit.dist.xml --group [GROUP_NAME]
4848
```
4949

5050
To view the list of test groups :
5151
```shellsession
52-
user@host codingame$ docker compose run --rm app ./tools/phpunit -c ./ci/phpunit.dist.xml --list-groups
52+
user@host codingame-php-tests$ docker compose run --rm app ./tools/phpunit -c ./ci/phpunit.dist.xml --list-groups
5353
```
5454

5555

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "cyril-verloop/codingame",
2+
"name": "cyril-verloop/codingame-php-tests",
33
"description": "A project to test your Codingame PHP code.",
44
"type": "project",
55
"license": "MIT",

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)