Files
shopPRO/composer.json

30 lines
881 B
JSON

{
"name": "shoppro/shoppro",
"description": "shopPRO - System sklepu internetowego",
"type": "project",
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Domain\\": "autoload/Domain/",
"Admin\\": "autoload/Admin/",
"Frontend\\": "autoload/Frontend/",
"Shared\\": "autoload/Shared/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "C:\\xampp\\php\\php.exe phpunit.phar --do-not-cache-result",
"test-articles": "C:\\xampp\\php\\php.exe phpunit.phar --do-not-cache-result tests/Unit/admin/Controllers/ArticlesControllerTest.php",
"test-coverage": "C:\\xampp\\php\\php.exe phpunit.phar --coverage-html coverage"
}
}