Skip to content

Commit

Permalink
Refactoring to new commons (as is)
Browse files Browse the repository at this point in the history
  • Loading branch information
remorhaz committed Mar 22, 2024
1 parent fce4191 commit 8c4ba4b
Show file tree
Hide file tree
Showing 23 changed files with 1,771 additions and 1,094 deletions.
12 changes: 0 additions & 12 deletions .editorconfig

This file was deleted.

4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
*.iml
.idea
nbproject
vendor/*
composer.phar
/vendor/
/build/
/composer.lock
.phpunit.result.cache
3 changes: 3 additions & 0 deletions behat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
default:
extensions:
Allure\Behat\AllureFormatterExtension:
23 changes: 18 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,36 @@
{
"name": "Tiko Lakin",
"email": "[email protected]"
},
{
"name": "Edward Surov",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"php": "^8",
"behat/behat": "^3.3",
"allure-framework/allure-php-api": "^1.3"
"allure-framework/allure-php-commons": "^2.0.0-rc4"
},
"require-dev": {
"symfony/process": "~2.5|~3.0|~4.0",
"phpunit/phpunit": "^7.2 | ^8 | ^9"
"squizlabs/php_codesniffer": "^3.6.1",
"symfony/process": "^4 || ^5",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-0": {
"": "src/"
},
"psr-4": {
"Qameta\\Allure\\Behat\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/behat"
"test-cs": "vendor/bin/phpcs -sp",
"test-behat": "vendor/bin/behat",
"test": [
"@test-cs",
"@test-behat"
]
}
}
Loading

0 comments on commit 8c4ba4b

Please sign in to comment.