-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
33 lines (33 loc) · 1.13 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "oxid-esales/evat-module",
"description": "This is eVat module for OXID eShop.",
"type": "oxideshop-module",
"keywords": ["oxid", "modules", "eShop"],
"homepage": "https://www.oxid-esales.com/en/home.html",
"license": [
"proprietary"
],
"prefer-stable": true,
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"mikey179/vfsstream": "~1.6.8"
},
"minimum-stability": "dev",
"conflict": {
"oxid-esales/oxideshop-ce": "<7.2"
},
"autoload": {
"psr-4": {
"OxidEsales\\EVatModule\\": "./src",
"OxidEsales\\EVatModule\\Tests\\": "./tests"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --bootstrap=/var/www/source/bootstrap.php --config=tests/",
"phpunit-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --bootstrap=/var/www/source/bootstrap.php --config=tests/ --coverage-html=tests/reports/coverage",
"phpintegration": "XDEBUG_MODE=coverage vendor/bin/phpunit --bootstrap=/var/www/source/bootstrap.php --config=tests/ --testsuite=Integration --coverage-clover=tests/Reports/coverage_integration_evat-module.xml"
}
}