{ "name": "misp/misp", "description": "MISP: Open Source Threat Intelligence Platform & Open Standards For Threat Information Sharing", "homepage": "https://cakephp.org", "type": "project", "license": " AGPL-3.0", "require": { "php": ">=8.0", "admad/cakephp-social-auth": "^1.1", "cakephp/authentication": "^2.0", "cakephp/authorization": "^2.0", "cakephp/cakephp": "^4.4", "cakephp/migrations": "^3.0", "cakephp/plugin-installer": "^1.2", "erusev/parsedown": "^1.7", "guzzlehttp/guzzle": "^7.8", "lstrojny/fxmlrpc": "^0.22.0", "mobiledetect/mobiledetectlib": "^2.8", "pear/crypt_gpg": "^1.6", "php-http/message": "^1.16", "php-http/message-factory": "^1.1", "supervisorphp/supervisor": "^5.0" }, "require-dev": { "cakephp/bake": "^2.0.3", "cakephp/cakephp-codesniffer": "^4.0", "cakephp/debug_kit": "^4.0", "cebe/php-openapi": "^1.6", "dealerdirect/phpcodesniffer-composer-installer": "^1.0", "fakerphp/faker": "^1.21", "josegonzalez/dotenv": "^3.2", "league/openapi-psr7-validator": "^0.17", "phpcsstandards/phpcsextra": "^1.2.0", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5", "psy/psysh": "@stable", "sirbrillig/phpcs-variable-analysis": "^2.11", "slevomat/coding-standard": "~8.0" }, "suggest": { "markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.", "dereuromark/cakephp-ide-helper": "After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan/Psalm compatibility.", "phpstan/phpstan": "PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code." }, "autoload": { "psr-4": { "App\\": "src/", "Tags\\": "plugins/Tags/src/" } }, "autoload-dev": { "psr-4": { "App\\Test\\": "tests/", "Tags\\Test\\": "plugins/Tags/tests/", "Cake\\Test\\": "vendor/cakephp/cakephp/tests/" } }, "scripts": { "post-install-cmd": [ "App\\Console\\Installer::postInstall", "bash scripts/pre-commit/install-pre-commit.sh" ], "post-create-project-cmd": "App\\Console\\Installer::postInstall", "check": [ "@test", "@cs-check" ], "cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/", "cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/", "stan": "phpstan analyse src/", "test": [ "phpunit" ], "migrate": [ "./bin/cake migrations migrate", "./bin/cake migrations migrate -p tags", "./bin/cake migrations migrate -p ADmad/SocialAuth" ] }, "prefer-stable": true, "config": { "sort-packages": true, "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true, "cakephp/plugin-installer": true, "php-http/discovery": true } } }