-
Notifications
You must be signed in to change notification settings - Fork 3
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 #33 from mailjet/bugfix/29055_Drupal8_Resubsribing…
…_unsubscribed_contacts_doesnt_work Composer integration and added use of new mailjet API and iFrame wrap…
- Loading branch information
Showing
168 changed files
with
22,542 additions
and
855 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,37 @@ | |
"issues": "https://www.drupal.org/project/issues/mailjet", | ||
"source": "http://cgit.drupalcode.org/mailjet" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:mailjet/mailjet-apiv3-php.git" | ||
}, | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:mailjet/Mailjet-iframe-v3.git" | ||
} | ||
], | ||
"require": { | ||
"phpmailer/phpmailer": "~5.2" | ||
"phpmailer/phpmailer": "~5.2", | ||
"mailjet/mailjet-apiv3-php": "dev-master", | ||
"mailjet/Mailjet-iframe-v3": "dev-master" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"MailjetTools\\": "lib/mailjet-api-php/src/" | ||
} | ||
}, | ||
"config": { | ||
"preferred-install": "dist" | ||
}, | ||
"scripts": { | ||
"post-install-cmd": [ | ||
"find ./vendor -name '.git' | xargs rm -rf", | ||
"find ./vendor -name '.gitignore' | xargs rm -rf" | ||
], | ||
"post-update-cmd": [ | ||
"find ./vendor -name '.git' | xargs rm -rf", | ||
"find ./vendor -name '.gitignore' | xargs rm -rf" | ||
] | ||
} | ||
} |
Oops, something went wrong.