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