Skip to content

Commit 0ce553f

Browse files
committed
Added license info in files. Improved documentation. Added author info to composer.json
1 parent 3825ee6 commit 0ce553f

File tree

8 files changed

+118
-12
lines changed

8 files changed

+118
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This project is published in packagist, so you just need to add it as a dependen
2020
```javascript
2121
"require": {
2222
// ...
23-
"mcustiel/php-simple-request": "*"
23+
"mcustiel/codeception-wiremock-extension": "*"
2424
}
2525
```
2626

@@ -31,7 +31,7 @@ If you want to access directly to this repo, adding this to your composer.json s
3131
"repositories": [
3232
{
3333
"type": "vcs",
34-
"url": "https://github.com/mcustiel/php-simple-request"
34+
"url": "https://github.com/mcustiel/codeception-wiremock-extension"
3535
}
3636
],
3737
"require": {

composer.json

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,18 @@
22
"keywords" : [
33
"wiremock",
44
"extension",
5-
"codeception"
5+
"module",
6+
"codeception",
7+
"mock",
8+
"mock external services"
69
],
10+
"authors" : [{
11+
"name" : "Mariano Custiel",
12+
"email" : "jmcustiel@gmail.com",
13+
"homepage" : "https://github.com/mcustiel",
14+
"role" : "Developer"
15+
}
16+
],
717
"autoload" : {
818
"psr-4" : {
919
"Codeception\\" : "src"
@@ -18,13 +28,13 @@
1828
"codeception/codeception" : "~2.1.0",
1929
"wiremock-php/wiremock-php" : ">=1.43"
2030
},
21-
"require-dev" : {
22-
"phing/phing" : ">=2.12.0",
23-
"squizlabs/php_codesniffer" : ">=2.3.4",
24-
"phpmd/phpmd" : ">=2.3.2",
25-
"sebastian/phpcpd" : ">=2.0.2",
26-
"pdepend/pdepend" : ">=2.0.6",
27-
"phploc/phploc" : ">=2.1.1",
28-
"phpdocumentor/phpdocumentor" : ">=2.8.5"
29-
}
31+
"require-dev" : {
32+
"phing/phing" : ">=2.12.0",
33+
"squizlabs/php_codesniffer" : ">=2.3.4",
34+
"phpmd/phpmd" : ">=2.3.2",
35+
"sebastian/phpcpd" : ">=2.0.2",
36+
"pdepend/pdepend" : ">=2.0.6",
37+
"phploc/phploc" : ">=2.1.1",
38+
"phpdocumentor/phpdocumentor" : ">=2.8.5"
39+
}
3040
}

src/Extension/WireMock.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?php
2+
/**
3+
* This file is part of codeception-wiremock-extension.
4+
*
5+
* codeception-wiremock-extension is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* codeception-wiremock-extension is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with codeception-wiremock-extension. If not, see <http://www.gnu.org/licenses/>.
17+
*/
218
namespace Codeception\Extension;
319

420
use Codeception\Platform\Extension as CodeceptionExtension;

src/Extension/WireMockArguments.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?php
2+
/**
3+
* This file is part of codeception-wiremock-extension.
4+
*
5+
* codeception-wiremock-extension is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* codeception-wiremock-extension is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with codeception-wiremock-extension. If not, see <http://www.gnu.org/licenses/>.
17+
*/
218
namespace Codeception\Extension;
319

420
/**

src/Extension/WireMockConnection.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?php
2+
/**
3+
* This file is part of codeception-wiremock-extension.
4+
*
5+
* codeception-wiremock-extension is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* codeception-wiremock-extension is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with codeception-wiremock-extension. If not, see <http://www.gnu.org/licenses/>.
17+
*/
218
namespace Codeception\Extension;
319

420
use WireMock\Client\WireMock as WireMockClient;

src/Extension/WireMockDownloader.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?php
2+
/**
3+
* This file is part of codeception-wiremock-extension.
4+
*
5+
* codeception-wiremock-extension is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* codeception-wiremock-extension is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with codeception-wiremock-extension. If not, see <http://www.gnu.org/licenses/>.
17+
*/
218
namespace Codeception\Extension;
319

420
/**

src/Extension/WireMockProcess.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?php
2+
/**
3+
* This file is part of codeception-wiremock-extension.
4+
*
5+
* codeception-wiremock-extension is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* codeception-wiremock-extension is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with codeception-wiremock-extension. If not, see <http://www.gnu.org/licenses/>.
17+
*/
218
namespace Codeception\Extension;
319

420
/**

src/Module/WireMock.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?php
2+
/**
3+
* This file is part of codeception-wiremock-extension.
4+
*
5+
* codeception-wiremock-extension is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* codeception-wiremock-extension is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with codeception-wiremock-extension. If not, see <http://www.gnu.org/licenses/>.
17+
*/
218
namespace Codeception\Module;
319

420
use Codeception\Module as CodeceptionModule;

0 commit comments

Comments
 (0)