Multiple implementations of the same back-end application. The aim is to provide quick, side-by-side comparisons of different technologies (languages, frameworks, libraries) while preserving consistent business logic across all implementations.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
1.2 KiB

{
"name": "autostore/php8-implementation",
"description": "PHP 8.2 implementation of AutoStore application following Clean Architecture",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.1",
"firebase/php-jwt": "^6.10",
"guzzlehttp/guzzle": "^7.8",
"psr/container": "^2.0",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"monolog/monolog": "^3.5",
"vlucas/phpdotenv": "^5.6",
"slim/slim": "^4.12",
"slim/psr7": "^1.6",
"league/container": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.8"
},
"autoload": {
"psr-4": {
"AutoStore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AutoStore\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse src tests",
"cs-check": "phpcs src tests --standard=PSR12",
"cs-fix": "phpcbf src tests --standard=PSR12"
}
}