Skip to content

Commit

Permalink
Merge pull request #38 from dnadesign/master
Browse files Browse the repository at this point in the history
Dynamic vars and composer changes
  • Loading branch information
lekoala authored Feb 1, 2024
2 parents 1b3132a + 54a50f3 commit 0f4ae76
Show file tree
Hide file tree
Showing 16 changed files with 33 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
"silverstripe/framework": "^5",
"composer/ca-bundle": "^1.1",
"symfony/mailchimp-mailer": "^6.3",
"symbiote/silverstripe-gridfieldextensions": "^4.0"
"symbiote/silverstripe-gridfieldextensions": "^4.0",
"symfony/http-client": "^5.4|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"symfony/http-client": "^5.4|^6.0"
"squizlabs/php_codesniffer": "^3.5"
},
"extra": {
"expose": [
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Exports.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Exports
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Inbound.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Inbound
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Internal.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Internal
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Ips.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Ips
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Messages.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Messages
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Metadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Metadata
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Rejects.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Rejects
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Senders.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Senders
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Subaccounts.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Subaccounts
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Tags
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Templates.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Templates
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Urls.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Urls
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Users.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Users
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Webhooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Webhooks
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down
2 changes: 2 additions & 0 deletions src/thirdparty/Mandrill/Whitelists.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class Mandrill_Whitelists
{

private $master;

public function __construct(Mandrill $master)
{
$this->master = $master;
Expand Down

0 comments on commit 0f4ae76

Please sign in to comment.