SiteWeaver_CMS/composer.json

47 lines
1.5 KiB
JSON
Raw Normal View History

2026-09-09 17:07:55 +00:00
{
"name": "funky/siteweaver-cms",
"type": "project",
"require": {
"php": "^8.4",
"league/glide": "^4.1",
"spomky-labs/otphp": "^11.5",
"aws/aws-sdk-php": "^3.394",
"sabre/dav": "^4.7",
"league/container": "^5.2",
"ezyang/htmlpurifier": "^4.19",
"phpmailer/phpmailer": "^7.1",
"guzzlehttp/guzzle": "^7.8",
"symfony/http-foundation": "^6.3",
"infisical/php-sdk": "^0.0.2"
},
"require-dev": {
"codeception/codeception": "^5.3",
"phpstan/phpstan": "^2.2",
"vimeo/psalm": "^6.16",
"friendsofphp/php-cs-fixer": "^3.95",
"robmorgan/phinx": "^0.16.12",
"codeception/module-asserts": "^3.3",
"codeception/module-phpbrowser": "*",
"vlucas/phpdotenv": "^5.7"
},
"autoload": {
"psr-4": {
"SiteWeaver\\": "src/Site/",
"Intervention\\": "src/Intervention/",
"Tests\\": "tests/"
},
"classmap": [
"src/Intervention/Image/ImageManager.php"
]
},
"scripts": {
"migrate:up": "php vendor/bin/phinx:migrations:up",
"migrate:down": "php vendor/bin/phinx:migrations:down",
"migrate:status": "php vendor/bin/phinx:migrations:status",
"lint": "php vendor/bin/phpstan-analyze src/",
"psalm": "php vendor/bin/phpslam src/",
"test": "php vendor/bin/codecept run",
"style": "php vendor/bin/php-cs-fixer fix --dry-run src/ && php vendor/bin/php-cs-fixer validate src/"
}
}