Skip to content

Commit e0b76ac

Browse files
committed
Initial commit
0 parents  commit e0b76ac

File tree

7 files changed

+118
-0
lines changed

7 files changed

+118
-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

.github/workflows/main.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
tests:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
php: [8.0, 8.1]
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v2
16+
17+
- name: Setup PHP
18+
uses: shivammathur/setup-php@v2
19+
with:
20+
php-version: ${{ matrix.php }}
21+
tools: phpcs, phpstan, phpunit
22+
23+
- name: Validate composer.json
24+
run: composer validate
25+
26+
- name: Check code style
27+
run: phpcs
28+
29+
- name: Static analysis
30+
run: phpstan
31+
32+
- name: Run test suite
33+
run: phpunit

.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: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "codeception/lib-web",
3+
"description": "Library containing files used by module-webdriver and lib-innerbrowser or module-phpbrowser",
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+
"conflict": {
19+
"codeception/codeception": "<5.0.0-alpha3"
20+
},
21+
"autoload": {
22+
"classmap": [
23+
"src/"
24+
]
25+
},
26+
"config": {
27+
"classmap-authoritative": true,
28+
"sort-packages": true
29+
}
30+
}

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+
Library containing files used by module-webdriver and lib-innerbrowser or module-phpbrowser
4+
5+
[![Actions Status](https://github.com/Codeception/lib-web/workflows/CI/badge.svg)](https://github.com/Codeception/lib-web/actions)
6+
[![Latest Stable Version](https://poser.pugx.org/codeception/lib-web/v/stable)](https://github.com/Codeception/lib-web/releases)
7+
[![Total Downloads](https://poser.pugx.org/codeception/lib-web/downloads)](https://packagist.org/packages/codeception/lib-web)
8+
[![License](https://poser.pugx.org/codeception/lib-web/license)](/LICENSE)
9+
10+
[Changelog](https://github.com/Codeception/lib-web/releases)
11+
12+
## License
13+
14+
`Codeception Lib Web` is open-sourced software licensed under the [MIT](/LICENSE) License.
15+
16+
© Codeception PHP Testing Framework

0 commit comments

Comments
 (0)