Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #34 from flagbit/develop
Browse files Browse the repository at this point in the history
Fix Composer
  • Loading branch information
Björn Meyer authored Sep 10, 2019
2 parents 4fcd01e + 48c3821 commit ddf4404
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 57 deletions.
22 changes: 0 additions & 22 deletions Test/Unit/phpunit.xml.dist

This file was deleted.

90 changes: 55 additions & 35 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,59 @@
{
"name": "flagbit/magento2-flysystem",
"description": "Flysystem integration for Magento2",
"type": "magento2-module",
"license": [
"proprietary"
],
"authors": [
{
"name": "Robin Homberg",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Björn Meyer",
"email": "[email protected]",
"role": "DevOps"
}
],
"require": {
"php": ">=7.1.0",
"league/flysystem": "1.0.43",
"league/flysystem-sftp": "^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"autoload": {
"files": [
"registration.php"
"name": "flagbit/magento2-flysystem",
"description": "Flysystem integration for Magento2",
"type": "magento2-module",
"license": [
"GPL-3.0-or-later"
],
"authors": [
{
"name": "Robin Homberg",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Björn Meyer",
"email": "[email protected]",
"role": "DevOps"
}
],
"homepage": "https://github.com/flagbit/Magento2-Flysystem",
"keywords": [
"magento",
"magento2",
"flysystem",
"filesystem"
],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"psr-4": {
"Flagbit\\Flysystem\\": ""
"require": {
"php": ">=7.1.0",
"league/flysystem": "^1.0",
"league/flysystem-sftp": "^1.0",
"magento/framework": ">=101.0.0",
"magento/module-backend": ">=100.2.0",
"magento/magento-composer-installer": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"roave/security-advisories": "dev-master"
},
"suggest": {
"flagbit/magento2-flysystem-s3": "S3 Adapter for Magento2 Flysystem integration"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Flagbit\\Flysystem\\": ""
}
},
"config": {
"sort-packages": true
}
},
"config": {
"sort-packages": true
}
}

0 comments on commit ddf4404

Please sign in to comment.