Newwebshop/composer.json

96 lines
2.8 KiB
JSON

{
"name": "webshop/freeshop",
"description": "Freies Webshop-System basierend auf PrestaShop",
"type": "project",
"license": "GPL-3.0",
"authors": [
{
"name": "Webshop System",
"email": "info@webshop-system.de"
}
],
"require": {
"php": "^8.1",
"doctrine/dbal": "^3.6",
"doctrine/orm": "^2.15",
"symfony/http-foundation": "^6.3",
"symfony/routing": "^6.3",
"symfony/yaml": "^6.3",
"twig/twig": "^3.7",
"monolog/monolog": "^3.4",
"vlucas/phpdotenv": "^5.5",
"ramsey/uuid": "^4.7",
"intervention/image": "^2.7",
"phpmailer/phpmailer": "^6.8",
"stripe/stripe-php": "^13.0",
"paypal/rest-api-sdk-php": "^1.14"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"phpunit/phpunit-selenium": "^8.0",
"mockery/mockery": "^1.6",
"fakerphp/faker": "^1.23",
"symfony/var-dumper": "^6.3",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"phpdocumentor/phpdocumentor": "^3.3",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Tests\\": "tests/"
},
"psr-0": {
"": "src/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite=Unit",
"test:integration": "phpunit --testsuite=Integration",
"test:feature": "phpunit --testsuite=Feature",
"test:coverage": "phpunit --coverage-html tests/coverage",
"test:coverage-text": "phpunit --coverage-text",
"cs": "phpcs --standard=PSR12 app/",
"cs:fix": "phpcbf --standard=PSR12 app/",
"stan": "phpstan analyse app/",
"docs": "phpdoc -d app/ -t docs/api",
"security": "roave-security-advisories:check",
"post-install-cmd": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-update-cmd": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packagist.org"
}
],
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
}
}