Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Merge 514c771 into 408f88c
Browse files Browse the repository at this point in the history
  • Loading branch information
niels-nijens committed Sep 3, 2015
2 parents 408f88c + 514c771 commit e2e8e57
Show file tree
Hide file tree
Showing 43 changed files with 3,458 additions and 117 deletions.
20 changes: 20 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

$finder = Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__);

return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL)
->fixers(array(
"-psr0",
"-concat_without_space",
"-phpdoc_no_access",
"-phpdoc_no_empty_return",
"-phpdoc_no_package",
"-phpdoc_scalar",
"-phpdoc_separation",
"-phpdoc_short_description",
"concat_with_spaces",
"ordered_use",
))
->finder($finder);
23 changes: 10 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,22 @@
"authors": [
{
"name": "Niels Nijens",
"email": "nijens.niels@gmail.com"
},
{
"name": "Giso Stallenberg"
},
{
"name": "Reyo Stallenberg"
"email": "nijens.niels@gmail.com",
"role": "Lead developer"
}
],
"require": {
"php": ">=5.4.0",
"herzult/php-ssh": "~1.1",
"justinrainbow/json-schema": "~1.3",
"seld/jsonlint": "~1.3",
"symfony/console": "~2.6",
"symfony/event-dispatcher": "~2.6"
"herzult/php-ssh": "^1.1",
"justinrainbow/json-schema": "^1.3",
"niels-nijens/utilities": "^3.2",
"seld/jsonlint": "^1.3",
"symfony/console": "^2.7",
"symfony/event-dispatcher": "^2.7",
"symfony/process": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"phpunit/phpunit": "^4.4",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
Expand Down

0 comments on commit e2e8e57

Please sign in to comment.