-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adjust to the renaming of the Resource namespace and class in Flow 4.0 - Adjusts code to package renaming from "TYPO3.Flow" to "Neos.Flow"
- Loading branch information
1 parent
849b3c5
commit 38d16ff
Showing
4 changed files
with
101 additions
and
66 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
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,25 +1,60 @@ | ||
{ | ||
"name": "flownative/aws-s3", | ||
"type": "typo3-flow-package", | ||
"description": "Amazon S3 adaptor for Neos and Flow", | ||
"authors": [ | ||
{ | ||
"name": "Robert Lemke", | ||
"email": "[email protected]", | ||
"homepage": "https://www.flownative.com", | ||
"role": "Developer" | ||
"name": "flownative/aws-s3", | ||
"type": "neos-package", | ||
"description": "", | ||
"authors": [ | ||
{ | ||
"name": "Robert Lemke", | ||
"email": "[email protected]", | ||
"homepage": "https://www.flownative.com", | ||
"role": "Developer" | ||
} | ||
], | ||
"license": [ | ||
"MIT" | ||
], | ||
"require": { | ||
"neos/flow": "~4.0", | ||
"aws/aws-sdk-php": "2.8.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Flownative\\Aws\\S3\\": "Classes" | ||
} | ||
}, | ||
"extra": { | ||
"applied-flow-migrations": [ | ||
"TYPO3.FLOW3-201201261636", | ||
"TYPO3.Fluid-201205031303", | ||
"TYPO3.FLOW3-201205292145", | ||
"TYPO3.FLOW3-201206271128", | ||
"TYPO3.FLOW3-201209201112", | ||
"TYPO3.Flow-201209251426", | ||
"TYPO3.Flow-201211151101", | ||
"TYPO3.Flow-201212051340", | ||
"TYPO3.Flow-201310031523", | ||
"TYPO3.Flow-201405111147", | ||
"TYPO3.Fluid-20141113120800", | ||
"TYPO3.Flow-20141113121400", | ||
"TYPO3.Fluid-20141121091700", | ||
"TYPO3.Fluid-20150214130800", | ||
"TYPO3.Flow-20151113161300", | ||
"TYPO3.Form-20160601101500", | ||
"TYPO3.Flow-20161115140400", | ||
"TYPO3.Flow-20161115140430", | ||
"Neos.Flow-20161124204700", | ||
"Neos.Flow-20161124204701", | ||
"Neos.Twitter.Bootstrap-20161124204912", | ||
"Neos.Form-20161124205254", | ||
"Neos.Flow-20161124224015", | ||
"Neos.Party-20161124225257", | ||
"Neos.Eel-20161124230101", | ||
"Neos.Imagine-20161124231742", | ||
"Neos.Media-20161124233100", | ||
"Neos.Flow-20161125124112", | ||
"Neos.SwiftMailer-20161130105617", | ||
"TYPO3.FluidAdaptor-20161130112935", | ||
"Neos.Media-20161219094126" | ||
] | ||
} | ||
], | ||
"license": [ | ||
"MIT" | ||
], | ||
"require": { | ||
"typo3/flow": "~3.1", | ||
"aws/aws-sdk-php": "2.8.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Flownative\\Aws\\S3\\": "Classes" | ||
} | ||
} | ||
} |