Skip to content

Commit

Permalink
Added registration.php to autoload and removed mapping to prevent cop…
Browse files Browse the repository at this point in the history
…ying file from vendor to app/code
  • Loading branch information
vkerkhoff committed Dec 29, 2015
1 parent 7b8a59d commit 08cd5ea
Showing 1 changed file with 22 additions and 29 deletions.
51 changes: 22 additions & 29 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,25 @@
{
"name": "paynl/magento2-plugin",
"description": "Pay.nl Magento2 Payment methods",
"type": "magento2-module",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/magento-composer-installer": "*",
"magento/module-sales": "*",
"magento/module-payment": "*",
"magento/module-quote": "*",
"paynl/sdk": "^1.0"
},
"authors": [
{
"name": "Andy Pieters",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Paynl\\Payment\\": ""
}
},
"extra": {
"map": [
[
"*",
"Paynl/Payment"
]
]
"name": "paynl/magento2-plugin",
"description": "Pay.nl Magento2 Payment methods",
"type": "magento2-module",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/magento-composer-installer": "*",
"magento/module-sales": "*",
"magento/module-payment": "*",
"magento/module-quote": "*",
"paynl/sdk": "^1.0"
},
"authors": [
{
"name": "Andy Pieters",
"email": "[email protected]"
}
],
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"Paynl\\Payment\\": ""
}
}
}

0 comments on commit 08cd5ea

Please sign in to comment.