summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-09-09 16:48:28 +0200
committerRemi Collet <fedora@famillecollet.com>2016-09-09 16:48:28 +0200
commit7a3c7164f8c4a5ed8fd444024090a18e83de3261 (patch)
treebc5c9e5578ca945c7c7fecd598c432e549123062 /composer.json
php-cs-fixer: 1.12.1, New package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json49
1 files changed, 49 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..6cd8abc
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,49 @@
+{
+ "name": "friendsofphp/php-cs-fixer",
+ "type": "application",
+ "description": "A tool to automatically fix PHP code style",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Dariusz RumiƄski",
+ "email": "dariusz.ruminski@gmail.com"
+ }
+ ],
+ "require": {
+ "php": "^5.3.6 || >=7.0 <7.2",
+ "ext-tokenizer": "*",
+ "symfony/console": "^2.3 || ^3.0",
+ "symfony/event-dispatcher": "^2.1 || ^3.0",
+ "symfony/filesystem": "^2.1 || ^3.0",
+ "symfony/finder": "^2.1 || ^3.0",
+ "symfony/process": "^2.3 || ^3.0",
+ "symfony/stopwatch": "^2.5 || ^3.0",
+ "sebastian/diff": "^1.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.5|^5",
+ "satooshi/php-coveralls": "^1.0"
+ },
+ "conflict": {
+ "hhvm": "<3.9"
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\CS\\": "Symfony/CS/" }
+ },
+ "bin": ["php-cs-fixer"],
+ "scripts": {
+ "test": [
+ "phpunit"
+ ],
+ "test-ci": [
+ "phpunit --verbose --coverage-clover build/logs/clover.xml"
+ ]
+ },
+ "config": {
+ "process-timeout": 0
+ }
+}