Skip to content

Commit

Permalink
[TASK] Update guzzle and phpunit dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
liayn committed May 24, 2018
1 parent 9053aa3 commit c84de17
Show file tree
Hide file tree
Showing 3 changed files with 449 additions and 190 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ env:

before_script:
- bash -c 'if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;'
- composer self-update
- bash -c 'if [ -n "$SHARIFF_RUN_TEST" ]; then composer install --prefer-dist --no-interaction; fi;'
- bash -c 'if [ -n "$SHARIFF_RUN_LINT" ]; then composer require "squizlabs/php_codesniffer=*"; fi;'
- bash -c 'if [ -n "$SHARIFF_RUN_LINT" ]; then composer require friendsofphp/php-cs-fixer --dev; fi;'
Expand Down
19 changes: 15 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
"url": "https://github.com/heiseonline/shariff-backend-php.git"
}
],
"keywords": ["heise", "social buttons", "shariff"],
"keywords": [
"heise",
"social buttons",
"shariff"
],
"description": "PHP backend for Shariff. Shariff enables website users to share their favorite content without compromising their privacy.",
"homepage": "https://github.com/heiseonline/shariff-backend-php",
"license": "MIT",
Expand All @@ -27,12 +31,19 @@
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
"sort-packages": true,
"platform": {
"php": "5.6.0"
}
},
"autoload": {
"psr-4": { "Heise\\Shariff\\": "src" }
"psr-4": {
"Heise\\Shariff\\": "src"
}
},
"autoload-dev": {
"psr-4": { "Heise\\Tests\\Shariff\\": "tests" }
"psr-4": {
"Heise\\Tests\\Shariff\\": "tests"
}
}
}
Loading

0 comments on commit c84de17

Please sign in to comment.