Skip to content

Commit 18cd622

Browse files
committed
Initial commit
0 parents  commit 18cd622

File tree

7 files changed

+95
-0
lines changed

7 files changed

+95
-0
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Exclude files that don't need to be present in packages (so they're not downloaded by Composer)
2+
/tests export-ignore
3+
/.gitattributes export-ignore
4+
/.github export-ignore
5+
/.gitignore export-ignore
6+
/*.md export-ignore
7+
/*.yml export-ignore

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.idea/
2+
/vendor/
3+
/composer.lock

.scrutinizer.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
tools:
2+
external_code_coverage: true
3+
build:
4+
nodes:
5+
analysis:
6+
tests:
7+
override:
8+
- php-scrutinizer-run

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2011 Michael Bodnarchuk and contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "codeception/lib-xml",
3+
"description": "Files used by module-rest and module-soap",
4+
"license": "MIT",
5+
"type": "library",
6+
"keywords": [
7+
"codeception"
8+
],
9+
"authors": [
10+
{
11+
"name": "Gintautas Miselis"
12+
}
13+
],
14+
"homepage": "https://codeception.com/",
15+
"require": {
16+
"php": "^8.0"
17+
},
18+
"require-dev": {
19+
"phpunit/phpunit": "^9.5 | ^10.0"
20+
},
21+
"conflict": {
22+
"codeception/codeception": "<5.0.0-alpha3"
23+
},
24+
"autoload": {
25+
"classmap": [
26+
"src/"
27+
]
28+
},
29+
"config": {
30+
"classmap-authoritative": true,
31+
"sort-packages": true
32+
}
33+
}

phpcs.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0"?>
2+
<ruleset name="Codeception">
3+
<description>Codeception code standard</description>
4+
<rule ref="PSR12">
5+
<exclude name="PSR2.Methods.MethodDeclaration.Underscore"/>
6+
</rule>
7+
</ruleset>

readme.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Codeception\Lib\Web
2+
3+
Files used by module-rest and module-soap
4+
5+
[![Actions Status](https://github.com/Codeception/lib-xml/workflows/CI/badge.svg)](https://github.com/Codeception/lib-xml/actions)
6+
[![Latest Stable Version](https://poser.pugx.org/codeception/lib-xml/v/stable)](https://github.com/Codeception/lib-xml/releases)
7+
[![Total Downloads](https://poser.pugx.org/codeception/lib-xml/downloads)](https://packagist.org/packages/codeception/lib-xml)
8+
[![License](https://poser.pugx.org/codeception/lib-xml/license)](/LICENSE)
9+
10+
[Changelog](https://github.com/Codeception/lib-xml/releases)
11+
12+
## License
13+
14+
`Codeception Lib Xml` is open-sourced software licensed under the [MIT](/LICENSE) License.
15+
16+
© Codeception PHP Testing Framework

0 commit comments

Comments
 (0)