-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from mficzel/task/neos7
TASK: Add Support for Neos 7
- Loading branch information
Showing
5 changed files
with
87 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,31 @@ | ||
{ | ||
"description": "Neos integration for pixx.io", | ||
"type": "neos-package", | ||
"name": "flownative/neos-pixxio", | ||
"license": "MIT", | ||
"require": { | ||
"neos/flow": "6.* || dev-master", | ||
"neos/media": "5.* || 6.* || dev-master", | ||
"guzzlehttp/guzzle": "6.*", | ||
"behat/transliterator": "~1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Flownative\\Pixxio\\": "Classes/" | ||
"description": "Neos integration for pixx.io", | ||
"type": "neos-package", | ||
"name": "flownative/neos-pixxio", | ||
"license": "MIT", | ||
"require": { | ||
"neos/flow": "6.* || 7.* || dev-master", | ||
"neos/media": "5.* || 6.* || 7.* || dev-master", | ||
"guzzlehttp/guzzle": "6.*", | ||
"behat/transliterator": "~1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Flownative\\Pixxio\\": "Classes/" | ||
} | ||
}, | ||
"extra": { | ||
"neos": { | ||
"package-key": "Flownative.Pixxio" | ||
}, | ||
"applied-flow-migrations": [ | ||
"Neos.Flow-20190425144900", | ||
"Neos.Flow-20190515215000", | ||
"Neos.Flow-20200813181400", | ||
"Neos.Flow-20201003165200", | ||
"Neos.Flow-20201109224100", | ||
"Neos.Flow-20201205172733", | ||
"Neos.Flow-20201207104500" | ||
] | ||
} | ||
}, | ||
"extra": { | ||
"neos": { | ||
"package-key": "Flownative.Pixxio" | ||
} | ||
} | ||
} |