diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3d8d590 --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name": "arionum/node", + "description": "The Arionum (ARO) cryptocurrency node.", + "license": "MIT", + "require": { + "php": "^7.2", + "ext-bcmath": "*", + "ext-gmp": "*", + "ext-openssl": "*", + "ext-pdo": "*" + }, + "require-dev": { + "squizlabs/php_codesniffer": "^3.2" + }, + "scripts": { + "check-style": "phpcs -p -l --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 .", + "fix-style": "phpcbf -p -l --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 ." + } +}