Add new version 0.238 zip file containing updated ProductRepository and Product class files

This commit is contained in:
2026-02-05 01:53:28 +01:00
parent 16cccac782
commit 3a7be21432
28 changed files with 116323 additions and 5 deletions

28
composer.json Normal file
View File

@@ -0,0 +1,28 @@
{
"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": "phpunit",
"test-coverage": "phpunit --coverage-html coverage"
}
}