Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ composer.phar

# phpunit itself is not needed
phpunit.phar

.phpunit.result.cache

#Vagrant files and directories
/.vagrant
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use PHPKitchen\CodeSpecs\Actor\I;
/**
* Specification of {@link IncomeCalculator}
*
* @author Dima Kolodko <prowwid@gmail.com>
* @author Dima Kolodko <dima@kolodko.pro>
*/
class IncomeCalculatorTest extends Specification {
private const EXPECTED_TAX_FOR_FIRST_LEVEL_TAX_RULE = 4500;
Expand Down Expand Up @@ -155,3 +155,4 @@ or use regular HTML:
```markdown
<a href="https://github.com/php-kitchen/code-specs"><img src="https://img.shields.io/badge/Tested_By-CodeSpecs-brightgreen.svg" alt="Tested By"></a>
```

8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@
],
"minimum-stability": "stable",
"require": {
"php": "^7.4"
"php": "^7.4",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"satooshi/php-coveralls": "^1.0"
"phpunit/phpunit": "^9.5",
"satooshi/php-coveralls": "^1.0",
"dms/phpunit-arraysubset-asserts": "^0.3"
},
"autoload": {
"psr-4": {
Expand Down
Loading