Skip to content

Commit 6349532

Browse files
authored
Merge pull request #3 from lamoda/update-codeception
Drop php <7.1 support, add Symfony 4 support
2 parents 87b1779 + 747608a commit 6349532

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ Provides a set of methods for checking and modifying files on remote storage.
2323
\Lamoda\Codeception\Extension\FlySystemModule:
2424
adapters:
2525
webdav:
26-
builderAdapter: \Lamoda\Codeception\Extension\AdapterBuilder\WebdavAdapterBuilder
26+
builderAdapter: \Lamoda\Codeception\Extension\AdapterFactory\WebdavAdapterFactory
2727
config:
2828
baseUri: "http://webdav-host"
2929
userName: "userName"
3030
password: "password"
3131
authType: "authType"
3232
sftp:
33-
builderAdapter: \Lamoda\Codeception\Extension\AdapterBuilder\SftpAdapterBuilder
33+
builderAdapter: \Lamoda\Codeception\Extension\AdapterFactory\SftpAdapterFactory
3434
config:
3535
host: "http://sftp-host"
3636
username: "username"
@@ -58,7 +58,7 @@ modules:
5858
\Lamoda\Codeception\Extension\FlySystemModule:
5959
adapters:
6060
sftp:
61-
builderAdapter: \Lamoda\Codeception\Extension\AdapterBuilder\SftpAdapterBuilder
61+
builderAdapter: \Lamoda\Codeception\Extension\AdapterFactory\SftpAdapterFactory
6262
config:
6363
host: "http://sftp-host"
6464
username: "username"
@@ -83,7 +83,7 @@ modules:
8383
\Lamoda\Codeception\Extension\FlySystemModule:
8484
adapters:
8585
webdav:
86-
builderAdapter: \Lamoda\Codeception\Extension\AdapterBuilder\WebdavAdapterBuilder
86+
builderAdapter: \Lamoda\Codeception\Extension\AdapterFactory\WebdavAdapterFactory
8787
config:
8888
baseUri: "http://webdav-host"
8989
userName: "userName"

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"license": "MIT",
66
"minimum-stability": "stable",
77
"require": {
8-
"php": ">=5.6",
9-
"codeception/codeception": "~2.3.0",
10-
"oneup/flysystem-bundle": "~1.7.0",
11-
"league/flysystem-sftp": "~1.0.0",
12-
"league/flysystem-webdav": "~1.0.0"
8+
"php": ">=7.1",
9+
"codeception/codeception": "~2.5",
10+
"oneup/flysystem-bundle": "~3.0",
11+
"league/flysystem-sftp": "~1.0",
12+
"league/flysystem-webdav": "~1.0"
1313
},
1414
"autoload": {
1515
"psr-4": {

0 commit comments

Comments
 (0)