Skip to content

Commit

Permalink
Merge pull request #18 from flownative/task/allow-neos-8
Browse files Browse the repository at this point in the history
Declare compatible with Neos & Flow v8
  • Loading branch information
kdambekalns committed Aug 12, 2022
2 parents 11dcf30 + 8a41da5 commit ae73fb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Classes/Controller/PixxioController.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function indexAction()

try {
$assetSource = new PixxioAssetSource('flownative-pixxio', $this->assetSourcesConfiguration['flownative-pixxio']['assetSourceOptions']);
$client = $assetSource->getPixxioClient();
$assetSource->getPixxioClient();
$this->view->assign('connectionSucceeded', true);
} catch (MissingClientSecretException $e) {
} catch (AuthenticationFailedException $e) {
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"name": "flownative/neos-pixxio",
"license": "MIT",
"require": {
"neos/flow": "6.* || 7.* || dev-master",
"neos/media": "5.* || 6.* || 7.* || dev-master",
"guzzlehttp/guzzle": "6.*",
"neos/flow": "^6.3 || ^7.0 || ^8.0 || dev-master",
"neos/media": "^5.3 || ^7.0 || ^8.0 || dev-master",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"behat/transliterator": "~1.0"
},
"autoload": {
Expand Down

0 comments on commit ae73fb8

Please sign in to comment.