THE CODE UPGRADE
Showing
.editorconfig
0 → 100644
.gitignore
0 → 100644
.php-cs-fixer.php
0 → 100644
Makefile
0 → 100644
UPGRADE_PLAN.md
0 → 100644
This diff is collapsed.
app/Core/ApiResponse.php
0 → 100644
app/Core/Cache.php
0 → 100644
app/Core/DebugBar.php
0 → 100644
app/Core/Repository.php
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
composer.json
0 → 100644
| { | ||
| "name": "club/erp", | ||
| "type": "project", | ||
| "require": { | ||
| "php": ">=8.1" | ||
| }, | ||
| "require-dev": { | ||
| "phpunit/phpunit": "^10.5", | ||
| "phpstan/phpstan": "^1.10", | ||
| "friendsofphp/php-cs-fixer": "^3.0" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "App\\Core\\": "app/Core/", | ||
| "App\\Modules\\": "app/Modules/", | ||
| "App\\Middleware\\": "app/Middleware/", | ||
| "App\\Shared\\": "app/Shared/" | ||
| }, | ||
| "files": ["app/Core/Helpers.php"] | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "Tests\\": "tests/" | ||
| } | ||
| }, | ||
| "config": { | ||
| "optimize-autoloader": true, | ||
| "sort-packages": true | ||
| } | ||
| } |
composer.lock
0 → 100644
This diff is collapsed.
phpstan.neon
0 → 100644
phpunit.xml
0 → 100644
tests/DatabaseTestCase.php
0 → 100644
tests/TestCase.php
0 → 100644
Please register or sign in to comment