Initial unit tests setup
Showing
... | @@ -7,8 +7,18 @@ | ... | @@ -7,8 +7,18 @@ |
"OSL-3.0", | "OSL-3.0", | ||
"AFL-3.0" | "AFL-3.0" | ||
], | ], | ||
"repositories": [ | |||
{ | |||
"type": "composer", | |||
"url": "https://repo.magento.com/" | |||
} | |||
], | |||
"require": { | "require": { | ||
"adyen/php-api-library": "*" | "adyen/php-api-library": "*", | ||
"magento/framework": ">=100.1.0" | |||
}, | |||
"require-dev": { | |||
"phpunit/phpunit": "~5" | |||
}, | }, | ||
"autoload": { | "autoload": { | ||
"files": [ | "files": [ | ||
... | @@ -17,5 +27,10 @@ | ... | @@ -17,5 +27,10 @@ |
"psr-4": { | "psr-4": { | ||
"Adyen\\Payment\\": "" | "Adyen\\Payment\\": "" | ||
} | } | ||
}, | |||
"autoload-dev": { | |||
"psr-4": { | |||
"Adyen\\Payment\\Tests\\": "tests/" | |||
} | |||
} | } | ||
} | } |
phpunit.xml
0 → 100644
tests/Helper/DataTest.php
0 → 100755
Please register or sign in to comment