Skip to content

Commit

Permalink
Merge pull request #36 from SaschaScholly/master
Browse files Browse the repository at this point in the history
Added Autoloading
  • Loading branch information
vernes authored Jun 20, 2018
2 parents 73a803f + c602aaf commit 9e0a4c1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
vendor
19 changes: 12 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"name": "vernes/yiimailer",
"description": "Yii extension for sending emails with layouts using PHPMailer",
"type": "yii-extension",
"require": {
"php": ">=5.5.0",
"phpmailer/phpmailer": "^6.0"
}
"name": "vernes/yiimailer",
"description": "Yii extension for sending emails with layouts using PHPMailer",
"type": "yii-extension",
"require": {
"php": ">=5.5.0",
"phpmailer/phpmailer": "^6.0"
},
"autoload": {
"classmap": [
"src"
]
}
}
File renamed without changes.

0 comments on commit 9e0a4c1

Please sign in to comment.