Skip to content

Commit

Permalink
added autoloading via classmap
Browse files Browse the repository at this point in the history
  • Loading branch information
SaschaScholly committed Jun 20, 2018
1 parent 5b1ae98 commit c602aaf
Showing 1 changed file with 12 additions and 7 deletions.
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"
]
}
}

0 comments on commit c602aaf

Please sign in to comment.