diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..dc715a9 --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name": "cssjanus/cssjanus", + "description": "Convert CSS stylesheets between left-to-right and right-to-left.", + "license": "Apache-2.0", + "autoload": { + "psr-0": { + "": "src/" + } + }, + "require": { + "php": ">=5.4" + }, + "require-dev": { + "jakub-onderka/php-parallel-lint": "0.8.*", + "phpunit/phpunit": "4.8.*", + "squizlabs/php_codesniffer": "2.3.*" + }, + "scripts": { + "test": [ + "parallel-lint . --exclude vendor", + "phpunit", + "phpcs -p" + ] + } +} |