shubraVeil/composer.json

51 lines
1.3 KiB
JSON
Raw Normal View History

2024-12-25 13:05:50 +02:00
{
2024-12-25 14:31:31 +02:00
"name": "shubraveil/essential-oils",
"description": "ShubraVeil Essential Oils E-commerce Platform",
2024-12-25 13:05:50 +02:00
"type": "project",
"require": {
2024-12-25 14:31:31 +02:00
"php": "^7.4|^8.0",
"stripe/stripe-php": "^10.0",
"paypal/rest-api-sdk-php": "^1.14",
"kreait/firebase-php": "^5.0",
2024-12-25 13:05:50 +02:00
"phpmailer/phpmailer": "^6.8",
"vlucas/phpdotenv": "^5.5",
2024-12-25 14:31:31 +02:00
"monolog/monolog": "^2.9",
2024-12-25 13:05:50 +02:00
"intervention/image": "^2.7",
2024-12-25 14:31:31 +02:00
"guzzlehttp/guzzle": "^7.7",
"ext-json": "*",
"ext-pdo": "*",
"ext-mysqli": "*",
"ext-gd": "*",
"ext-intl": "*"
2024-12-25 13:05:50 +02:00
},
"require-dev": {
2024-12-25 14:31:31 +02:00
"phpunit/phpunit": "^9.6",
2024-12-25 13:05:50 +02:00
"phpstan/phpstan": "^1.10",
2024-12-25 14:31:31 +02:00
"squizlabs/php_codesniffer": "^3.7",
"fakerphp/faker": "^1.23"
2024-12-25 13:05:50 +02:00
},
"autoload": {
"psr-4": {
2024-12-25 14:31:31 +02:00
"ShubraVeil\\": "src/"
2024-12-25 13:05:50 +02:00
}
},
"autoload-dev": {
"psr-4": {
"ShubraVeil\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
2024-12-25 14:31:31 +02:00
"phpstan": "phpstan analyse",
2024-12-25 13:05:50 +02:00
"cs": "phpcs",
2024-12-25 14:31:31 +02:00
"cs-fix": "phpcbf"
2024-12-25 13:05:50 +02:00
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}