{ "name": "getformwork/formwork", "description": "A file-based Content Management System (CMS) to make and manage simple sites", "type": "project", "homepage": "https://github.com/getformwork/formwork", "license": "MIT", "authors": [ { "name": "Giuseppe Criscione" } ], "autoload": { "psr-4": { "Formwork\\": "formwork/src/" } }, "require": { "php": ">=8.3", "ext-dom": "*", "ext-fileinfo": "*", "ext-gd": "*", "ext-mbstring": "*", "ext-openssl": "*", "ext-zip": "*", "symfony/polyfill-ctype": "^1.23", "symfony/yaml": "^7.0.3", "league/commonmark": "^2.4", "jaybizzle/crawler-detect": "^1.2", "masterminds/html5": "^2.9" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.0", "league/climate": "^3.8", "symfony/process": "^7.0.4", "phpstan/phpstan": "^1.10", "rector/rector": "^1.0.4" }, "scripts": { "fix": "php-cs-fixer fix --config=formwork/.php-cs-fixer.php --cache-file=formwork/.php-cs-fixer.cache --verbose", "fix:check": "php-cs-fixer check --config=formwork/.php-cs-fixer.php --cache-file=formwork/.php-cs-fixer.cache", "phpstan": "phpstan analyse --configuration=formwork/phpstan.neon", "phpstan:baseline": "phpstan analyse --configuration=formwork/phpstan.neon --generate-baseline=formwork/phpstan-baseline.neon", "rector": "rector --config=formwork/.rector.php", "rector:check": "rector --dry-run --config=formwork/.rector.php", "serve": [ "Composer\\Config::disableProcessTimeout", "php bin/serve" ] } }