53 lines
1.7 KiB
JSON
53 lines
1.7 KiB
JSON
{
|
|
"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",
|
|
"ext-dom": "*"
|
|
},
|
|
"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/",
|
|
"SiteWeaver\\Plugins\\": "site/plugins/",
|
|
"SiteWeaver\\Themes\\": "site/themes/",
|
|
"SiteWeaver\\AdminThemes\\": "site/admin_themes/",
|
|
"Intervention\\": "src/Intervention/"
|
|
},
|
|
"classmap": []
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"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/"
|
|
}
|
|
}
|