Skip to content

Commit

Permalink
Merge 950a284 into 10e9b6a
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed Feb 23, 2020
2 parents 10e9b6a + 950a284 commit 89beabf
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 19 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,3 +10,4 @@ composer.phar
composer.lock
vagrant_ansible_inventory_default
Vagrantfile
coverage.xml
9 changes: 6 additions & 3 deletions .travis.yml
@@ -1,13 +1,16 @@
language: php

sudo: false
os: linux

php:
- 7.3
- 7.4snapshot
- 7.4

install: composer install --prefer-source --no-interaction

script: bin/phpspec run -fpretty -v

after_script: bin/coveralls -v
after_script:
- wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.2.0/php-coveralls.phar
- chmod +x php-coveralls.phar
- ./php-coveralls.phar -v --coverage_clover coverage.xml --json_path coveralls-upload.json
31 changes: 15 additions & 16 deletions composer.json
Expand Up @@ -14,24 +14,23 @@
}
],
"require": {
"php": ">=7.3",
"symfony/process": "^4 || ^5",
"league/flysystem": "^1.0"
"php": "^7.3 || ^7.4",
"symfony/process": "^4.4 || ^5.0",
"league/flysystem": "^1.0.64"
},
"require-dev": {
"mockery/mockery": "~0.9",
"satooshi/php-coveralls": "~0.6",
"league/flysystem-aws-s3-v3": "~1.0",
"spatie/flysystem-dropbox": "~1.0",
"srmklive/flysystem-dropbox-v2": "~1.0",
"league/flysystem-rackspace": "~1.0",
"league/flysystem-sftp": "~1.0",
"league/flysystem-webdav": "~1.0",
"mhetreramesh/flysystem-backblaze" : "~1.0",
"superbalist/flysystem-google-storage": "^7.0",
"dropbox/dropbox-sdk": "~1.1",
"aws/aws-sdk-php": "~3.0",
"phpspec/phpspec": "^4"
"league/flysystem-aws-s3-v3": "^1.0.24",
"spatie/flysystem-dropbox": "^1.2",
"srmklive/flysystem-dropbox-v2": "^1.0",
"league/flysystem-rackspace": "^1.0",
"league/flysystem-sftp": "^1.0",
"league/flysystem-webdav": "^1.0",
"mhetreramesh/flysystem-backblaze" : "^1.5",
"superbalist/flysystem-google-storage": "^7.2",
"dropbox/dropbox-sdk": "^1.1.7",
"aws/aws-sdk-php": "^3.133.20",
"phpspec/phpspec": "^6.1.1",
"friends-of-phpspec/phpspec-code-coverage": "^4.3"
},
"suggest": {
"mhetreramesh/flysystem-backblaze": "B2 adapter support.",
Expand Down
7 changes: 7 additions & 0 deletions phpspec.yml
Expand Up @@ -5,3 +5,10 @@ suites:
psr4_prefix: BackupManager

formatter.name: pretty

extensions:
FriendsOfPhpSpec\PhpSpec\CodeCoverage\CodeCoverageExtension:
format:
- clover
output:
clover: coverage.xml

0 comments on commit 89beabf

Please sign in to comment.