diff options
author | Remi Collet <remi@remirepo.net> | 2017-07-18 07:33:19 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-07-18 07:33:19 +0200 |
commit | 1137e5eff06404c8ad833932bee60c88d31198ea (patch) | |
tree | a0ab81c51dc1070f1729062ff929b98d2a883a11 /composer.json | |
parent | ebc70311fc43ca038cc4611948fb8ee49e75e9dd (diff) |
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" + ] + } +} |