SiteWeaver_CMS/composer.json

53 lines
1.7 KiB
JSON
Raw Permalink 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",
2026-09-09 23:58:20 +00:00
"infisical/php-sdk": "^0.0.2",
"ext-dom": "*"
2026-09-09 17:07:55 +00:00
},
"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/",
2026-09-09 23:58:20 +00:00
"SiteWeaver\\Plugins\\": "site/plugins/",
"SiteWeaver\\Themes\\": "site/themes/",
"SiteWeaver\\AdminThemes\\": "site/admin_themes/",
"Intervention\\": "src/Intervention/"
2026-09-09 17:07:55 +00:00
},
2026-09-09 23:58:20 +00:00
"classmap": []
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
2026-09-09 17:07:55 +00:00
},
"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/"
}
}