This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
forked from mensler/bav
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from cashlink/php-8
PHP 8 compatibility, update PHPUnit
- Loading branch information
Showing
169 changed files
with
224 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
nbproject | ||
.settings | ||
.buildpath | ||
.phpunit.result.cache | ||
.project | ||
.idea | ||
vendor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,33 +3,39 @@ | |
"type": "library", | ||
"description": "BAV provides validation for German Bank Accounts (Konto)", | ||
"keywords": ["bank", "account", "bankaccount", "validation", "check", "konto"], | ||
"homepage": "http://bav.malkusch.de/", | ||
"homepage": "https://github.com/cashlink/bav", | ||
"license": "WTFPL", | ||
"authors": [ | ||
{ | ||
"name": "Markus Malkusch", | ||
"email": "[email protected]", | ||
"homepage": "http://markus.malkusch.de", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Clemens Weiß", | ||
"email": "[email protected]", | ||
"role": "Maintainer" | ||
} | ||
], | ||
"autoload": { | ||
"files": ["autoloader/autoloader.php"] | ||
}, | ||
"require": { | ||
"php": ">=7.0.0", | ||
"php": ">=7.3", | ||
"cashlink/php-index": "~1.0.0" | ||
}, | ||
"suggest": { | ||
"ext-PDO": "Allows storing bank information in a database", | ||
"ext-mbstring": "Enables UTF-8 support", | ||
"ext-dom": "Enables picking the download URI by xpath", | ||
"lib-curl": "Enables API for downloading the bank file", | ||
"ext-curl": "Enables API for downloading the bank file", | ||
"doctrine/orm": "Support for Doctrine ORM data backend" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~5.7", | ||
"doctrine/orm": "^2" | ||
"phpunit/phpunit": "~9.5", | ||
"doctrine/orm": "^2", | ||
"doctrine/dbal": "^2", | ||
"symfony/cache": "^4.4 || ^5.4 || ^6.0" | ||
}, | ||
"archive": { | ||
"exclude": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
namespace malkusch\bav; | ||
|
||
require_once __DIR__ . "/../bootstrap.php"; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* Tests the Backends. | ||
|
@@ -11,7 +11,7 @@ | |
* @license WTFPL | ||
* @author Markus Malkusch <[email protected]> | ||
*/ | ||
class BackendTest extends \PHPUnit_Framework_TestCase | ||
class BackendTest extends TestCase | ||
{ | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ | |
|
||
use PHPUnit\Framework\TestCase; | ||
|
||
require_once __DIR__ . "/../bootstrap.php"; | ||
|
||
/** | ||
* Tests BICUtil. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.