Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Commit e305e71

Browse files
committed
Renamed repository to zend-container-config-test
1 parent ad2efbe commit e305e71

26 files changed

+89
-89
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# zend-container-test
1+
# zend-container-config-test
22

3-
[![Build Status](https://secure.travis-ci.org/zendframework/zend-container-test.svg?branch=master)](https://secure.travis-ci.org/zendframework/zend-container-test)
4-
[![Coverage Status](https://coveralls.io/repos/github/zendframework/zend-container-test/badge.svg?branch=master)](https://coveralls.io/github/zendframework/zend-container-test?branch=master)
3+
[![Build Status](https://secure.travis-ci.org/zendframework/zend-container-config-test.svg?branch=master)](https://secure.travis-ci.org/zendframework/zend-container-config-test)
4+
[![Coverage Status](https://coveralls.io/repos/github/zendframework/zend-container-config-test/badge.svg?branch=master)](https://coveralls.io/github/zendframework/zend-container-config-test?branch=master)
55

66
This library provides common tests for PSR-11 containers configured
77
[`zend-servicemanager`](https://github.com/zendframework/zend-servicemanager)
@@ -20,12 +20,12 @@ Currently we support:
2020
Run the following to install this library:
2121

2222
```bash
23-
$ composer require --dev zendframework/zend-container-test
23+
$ composer require --dev zendframework/zend-container-config-test
2424
```
2525

2626
## Using common tests
2727

28-
In your library you have to extends `Zend\ContainerTest\ContainerTest` class
28+
In your library you have to extends `Zend\ContainerConfigTest\ContainerTest` class
2929
and implement method `createContainer`:
3030

3131
```php
@@ -37,10 +37,10 @@ It should return configured PSR-11 container.
3737
Then, depends what functionality you'd like to support, you can add the
3838
following traits into your test case:
3939

40-
- `Zend\ContainerTest\AliasTestTrait` - to support `aliases` configuration,
41-
- `Zend\ContainerTest\DelegatorTestTrait` - to support `delegators` configuration,
42-
- `Zend\ContainerTest\FactoryTestTrait` - to support `factories` configuration,
43-
- `Zend\ContainerTest\InvokableTestTrait` - to support `invokables` configuration,
44-
- `Zend\ContainerTest\ServiceTestTrait` - to support `services` configuration,
40+
- `Zend\ContainerConfigTest\AliasTestTrait` - to support `aliases` configuration,
41+
- `Zend\ContainerConfigTest\DelegatorTestTrait` - to support `delegators` configuration,
42+
- `Zend\ContainerConfigTest\FactoryTestTrait` - to support `factories` configuration,
43+
- `Zend\ContainerConfigTest\InvokableTestTrait` - to support `invokables` configuration,
44+
- `Zend\ContainerConfigTest\ServiceTestTrait` - to support `services` configuration,
4545

46-
or use `Zend\ContainerTest\AllTestTrait` to support whole `zend-servicemanager` configuration.
46+
or use `Zend\ContainerConfigTest\AllTestTrait` to support whole `zend-servicemanager` configuration.

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "zendframework/zend-container-test",
2+
"name": "zendframework/zend-container-config-test",
33
"description": "Expressive PSR-11 Container configuration tests",
44
"license": "BSD-3-Clause",
55
"keywords": [
@@ -11,10 +11,10 @@
1111
"psr-11"
1212
],
1313
"support": {
14-
"docs": "https://docs.zendframework.com/zend-container-test/",
15-
"issues": "https://github.com/zendframework/zend-container-test/issues",
16-
"source": "https://github.com/zendframework/zend-container-test",
17-
"rss": "https://github.com/zendframework/zend-container-test/releases.atom",
14+
"docs": "https://docs.zendframework.com/zend-container-config-test/",
15+
"issues": "https://github.com/zendframework/zend-container-config-test/issues",
16+
"source": "https://github.com/zendframework/zend-container-config-test",
17+
"rss": "https://github.com/zendframework/zend-container-config-test/releases.atom",
1818
"slack": "https://zendframework-slack.herokuapp.com",
1919
"forum": "https://discourse.zendframework.com/c/questions/expressive"
2020
},
@@ -31,12 +31,12 @@
3131
},
3232
"autoload": {
3333
"psr-4": {
34-
"Zend\\ContainerTest\\": "src/"
34+
"Zend\\ContainerConfigTest\\": "src/"
3535
}
3636
},
3737
"autoload-dev": {
3838
"psr-4": {
39-
"ZendTest\\ContainerTest\\": "test/"
39+
"ZendTest\\ContainerConfigTest\\": "test/"
4040
}
4141
},
4242
"config": {

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.

docs/CONTRIBUTING.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ read/subscribe to the following resources:
1111
- [Code of Conduct](CODE_OF_CONDUCT.md)
1212

1313
If you are working on new features or refactoring
14-
[create a proposal](https://github.com/zendframework/zend-container-test/issues/new).
14+
[create a proposal](https://github.com/zendframework/zend-container-config-test/issues/new).
1515

1616
## RUNNING TESTS
1717

@@ -20,8 +20,8 @@ To run tests:
2020
- Clone the repository:
2121

2222
```console
23-
$ git clone git://github.com/zendframework/zend-container-test.git
24-
$ cd zend-container-test
23+
$ git clone git://github.com/zendframework/zend-container-config-test.git
24+
$ cd zend-container-config-test
2525
```
2626

2727
- Install dependencies via composer:
@@ -72,19 +72,19 @@ pull your work into the master repository. We recommend using
7272
[GitHub](https://github.com), as that is where the component is already hosted.
7373

7474
1. Setup a [GitHub account](https://github.com/), if you haven't yet
75-
2. Fork the repository (https://github.com/zendframework/zend-container-test)
75+
2. Fork the repository (https://github.com/zendframework/zend-container-config-test)
7676
3. Clone the canonical repository locally and enter it.
7777

7878
```console
79-
$ git clone git://github.com/zendframework/zend-container-test.git
80-
$ cd zend-container-test
79+
$ git clone git://github.com/zendframework/zend-container-config-test.git
80+
$ cd zend-container-config-test
8181
```
8282

8383
4. Add a remote to your fork; substitute your GitHub username in the command
8484
below.
8585

8686
```console
87-
$ git remote add {username} git@github.com:{username}/zend-container-test.git
87+
$ git remote add {username} git@github.com:{username}/zend-container-config-test.git
8888
$ git fetch {username}
8989
```
9090

@@ -147,7 +147,7 @@ Delta compression using up to 2 threads.
147147
Compression objects: 100% (18/18), done.
148148
Writing objects: 100% (20/20), 8.19KiB, done.
149149
Total 20 (delta 12), reused 0 (delta 0)
150-
To ssh://git@github.com/{username}/zend-container-test.git
150+
To ssh://git@github.com/{username}/zend-container-config-test.git
151151
b5583aa..4f51698 HEAD -> master
152152
```
153153

docs/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- [ ] I was not able to find an [open](https://github.com/zendframework/zend-container-test/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-container-test/issues?q=is%3Aclosed) issue matching what I'm seeing.
1+
- [ ] I was not able to find an [open](https://github.com/zendframework/zend-container-config-test/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-container-config-test/issues?q=is%3Aclosed) issue matching what I'm seeing.
22
- [ ] This is not a question. (Questions should be asked on [slack](https://zendframework.slack.com/) ([Signup for Slack here](https://zendframework-slack.herokuapp.com/)) or our [forums](https://discourse.zendframework.com/).)
33

44
Provide a narrative description of what you are trying to accomplish.

docs/SUPPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Zend Framework offers three support channels:
77
- For detailed questions (e.g., those requiring examples) use our
88
[forums](https://discourse.zendframework.com/c/questions/expressive)
99
- To report issues, use this repository's
10-
[issue tracker](https://github.com/zendframework/zend-container-test/issues/new)
10+
[issue tracker](https://github.com/zendframework/zend-container-config-test/issues/new)
1111

1212
**DO NOT** use the issue tracker to ask questions; use Slack or the forums for
1313
that. Questions posed to the issue tracker will be closed.

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
bootstrap="vendor/autoload.php"
55
colors="true">
66
<testsuites>
7-
<testsuite name="zend-container-test">
7+
<testsuite name="zend-container-config-test">
88
<directory>./test</directory>
99
</testsuite>
1010
</testsuites>

src/AliasTestTrait.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22
/**
3-
* @see https://github.com/zendframework/zend-container-test for the canonical source repository
3+
* @see https://github.com/zendframework/zend-container-config-test for the canonical source repository
44
* @copyright Copyright (c) 2018 Zend Technologies USA Inc. (https://www.zend.com)
5-
* @license https://github.com/zendframework/zend-container-test/blob/master/LICENSE.md New BSD License
5+
* @license https://github.com/zendframework/zend-container-config-test/blob/master/LICENSE.md New BSD License
66
*/
77

88
declare(strict_types=1);
99

10-
namespace Zend\ContainerTest;
10+
namespace Zend\ContainerConfigTest;
1111

1212
use Generator;
1313

src/AllTestTrait.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22
/**
3-
* @see https://github.com/zendframework/zend-container-test for the canonical source repository
3+
* @see https://github.com/zendframework/zend-container-config-test for the canonical source repository
44
* @copyright Copyright (c) 2018 Zend Technologies USA Inc. (https://www.zend.com)
5-
* @license https://github.com/zendframework/zend-container-test/blob/master/LICENSE.md New BSD License
5+
* @license https://github.com/zendframework/zend-container-config-test/blob/master/LICENSE.md New BSD License
66
*/
77

88
declare(strict_types=1);
99

10-
namespace Zend\ContainerTest;
10+
namespace Zend\ContainerConfigTest;
1111

1212
trait AllTestTrait
1313
{

src/ContainerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22
/**
3-
* @see https://github.com/zendframework/zend-container-test for the canonical source repository
3+
* @see https://github.com/zendframework/zend-container-config-test for the canonical source repository
44
* @copyright Copyright (c) 2018 Zend Technologies USA Inc. (https://www.zend.com)
5-
* @license https://github.com/zendframework/zend-container-test/blob/master/LICENSE.md New BSD License
5+
* @license https://github.com/zendframework/zend-container-config-test/blob/master/LICENSE.md New BSD License
66
*/
77

88
declare(strict_types=1);
99

10-
namespace Zend\ContainerTest;
10+
namespace Zend\ContainerConfigTest;
1111

1212
use PHPUnit\Framework\TestCase;
1313
use Psr\Container\ContainerInterface;

0 commit comments

Comments
 (0)