Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2016-02-27 23:54:40 +0300
committerChaoyi Zha <summermontreal@gmail.com>2016-02-27 23:54:40 +0300
commit6c35c6b9bed0f04b98b97461d7395e3036c9c8ad (patch)
tree11ec71c73f4289cef6f99e6e0d8311af8b22a624
parentcece81245f9b0c074c5d294e92f35a47b1473b86 (diff)
Add illuminate mailer
-rw-r--r--composer.json3
-rw-r--r--composer.lock108
-rw-r--r--vendor/composer/autoload_classmap.php3
-rw-r--r--vendor/composer/autoload_files.php1
-rw-r--r--vendor/composer/autoload_psr4.php1
-rw-r--r--vendor/composer/installed.json108
6 files changed, 221 insertions, 3 deletions
diff --git a/composer.json b/composer.json
index 71b225a..6f5a01a 100644
--- a/composer.json
+++ b/composer.json
@@ -7,7 +7,8 @@
"require": {
"php": ">=5.5.9",
"laravel/lumen-framework": "5.1.*",
- "vlucas/phpdotenv": "~1.0"
+ "vlucas/phpdotenv": "~1.0",
+ "illuminate/mail": "~5.1"
},
"require-dev": {
"fzaninotto/faker": "~1.0",
diff --git a/composer.lock b/composer.lock
index fa4c3ea..6eafc21 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,8 +4,8 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
- "hash": "14e5ddab6cbb9404df063f1f4327e790",
- "content-hash": "7ae10f27bd927015a126d5343bf31671",
+ "hash": "bc58f6f3e54f7ec09a474296c62d69e9",
+ "content-hash": "3a60c0346262220eee088ca1153291dc",
"packages": [
{
"name": "danielstjules/stringy",
@@ -844,6 +844,57 @@
"time": "2015-12-19 22:27:14"
},
{
+ "name": "illuminate/mail",
+ "version": "v5.1.31",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/illuminate/mail.git",
+ "reference": "a4b3bd4f8301ac22d31f1e82698803fdf693bc01"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/illuminate/mail/zipball/a4b3bd4f8301ac22d31f1e82698803fdf693bc01",
+ "reference": "a4b3bd4f8301ac22d31f1e82698803fdf693bc01",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/container": "5.1.*",
+ "illuminate/contracts": "5.1.*",
+ "illuminate/support": "5.1.*",
+ "php": ">=5.5.9",
+ "psr/log": "~1.0",
+ "swiftmailer/swiftmailer": "~5.1"
+ },
+ "suggest": {
+ "aws/aws-sdk-php": "Required to use the SES mail driver (~3.0).",
+ "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers (~5.3|~6.0)."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.1-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Illuminate\\Mail\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylorotwell@gmail.com"
+ }
+ ],
+ "description": "The Illuminate Mail package.",
+ "homepage": "http://laravel.com",
+ "time": "2015-12-05 16:21:24"
+ },
+ {
"name": "illuminate/pagination",
"version": "v5.1.28",
"source": {
@@ -1619,6 +1670,59 @@
"time": "2012-12-21 11:40:51"
},
{
+ "name": "swiftmailer/swiftmailer",
+ "version": "v5.4.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/swiftmailer/swiftmailer.git",
+ "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0697e6aa65c83edf97bb0f23d8763f94e3f11421",
+ "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "require-dev": {
+ "mockery/mockery": "~0.9.1,<0.9.4"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.4-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "lib/swift_required.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Chris Corbyn"
+ },
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ }
+ ],
+ "description": "Swiftmailer, free feature-rich PHP mailer",
+ "homepage": "http://swiftmailer.org",
+ "keywords": [
+ "email",
+ "mail",
+ "mailer"
+ ],
+ "time": "2015-06-06 14:19:39"
+ },
+ {
"name": "symfony/console",
"version": "v2.7.9",
"source": {
diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php
index 68b4ee0..e02797c 100644
--- a/vendor/composer/autoload_classmap.php
+++ b/vendor/composer/autoload_classmap.php
@@ -7,6 +7,7 @@ $baseDir = dirname($vendorDir);
return array(
'AuthTest' => $baseDir . '/tests/AuthTest.php',
+ 'BaseHelperTest' => $baseDir . '/tests/BaseHelperTest.php',
'CreateLinkTable' => $baseDir . '/database/migrations/2015_11_04_015813_create_link_table.php',
'CreateUsersTable' => $baseDir . '/database/migrations/2015_11_04_015823_create_users_table.php',
'DatabaseSeeder' => $baseDir . '/database/seeds/DatabaseSeeder.php',
@@ -20,6 +21,7 @@ return array(
'Illuminate\\Foundation\\Testing\\DatabaseTransactions' => $vendorDir . '/laravel/lumen-framework/src/Foundation/Testing/DatabaseTransactions.php',
'Illuminate\\Foundation\\Testing\\WithoutMiddleware' => $vendorDir . '/laravel/lumen-framework/src/Foundation/Testing/WithoutMiddleware.php',
'IndexTest' => $baseDir . '/tests/IndexTest.php',
+ 'LinkHelperTest' => $baseDir . '/tests/LinkHelperTest.php',
'PHPUnit_Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php',
'PHPUnit_Extensions_GroupTestSuite' => $vendorDir . '/phpunit/phpunit/src/Extensions/GroupTestSuite.php',
'PHPUnit_Extensions_PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Extensions/PhptTestCase.php',
@@ -465,4 +467,5 @@ return array(
'SessionHandlerInterface' => $vendorDir . '/symfony/http-foundation/Resources/stubs/SessionHandlerInterface.php',
'TestCase' => $baseDir . '/tests/TestCase.php',
'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php',
+ 'UserHelperTest' => $baseDir . '/tests/UserHelperTest.php',
);
diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php
index c46dcf2..84ec4a6 100644
--- a/vendor/composer/autoload_files.php
+++ b/vendor/composer/autoload_files.php
@@ -10,6 +10,7 @@ return array(
'72579e7bd17821bb1321b87411366eae' => $vendorDir . '/illuminate/support/helpers.php',
'667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
'5255c38a0faeba867671b61dfda6d864' => $vendorDir . '/paragonie/random_compat/lib/random.php',
+ '2c102faa651ef8ea5874edb585946bce' => $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php',
'253c157292f75eb38082b5acb06f3f01' => $vendorDir . '/nikic/fast-route/src/functions.php',
'bee9632da3ca00a99623b9c35d0c4f8b' => $vendorDir . '/laravel/lumen-framework/src/helpers.php',
);
diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php
index 3b94fe5..b35c371 100644
--- a/vendor/composer/autoload_psr4.php
+++ b/vendor/composer/autoload_psr4.php
@@ -30,6 +30,7 @@ return array(
'Illuminate\\Queue\\' => array($vendorDir . '/illuminate/queue'),
'Illuminate\\Pipeline\\' => array($vendorDir . '/illuminate/pipeline'),
'Illuminate\\Pagination\\' => array($vendorDir . '/illuminate/pagination'),
+ 'Illuminate\\Mail\\' => array($vendorDir . '/illuminate/mail'),
'Illuminate\\Http\\' => array($vendorDir . '/illuminate/http'),
'Illuminate\\Hashing\\' => array($vendorDir . '/illuminate/hashing'),
'Illuminate\\Filesystem\\' => array($vendorDir . '/illuminate/filesystem'),
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index ec34fff..b29cf29 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -3638,5 +3638,113 @@
],
"description": "Symfony CssSelector Component",
"homepage": "https://symfony.com"
+ },
+ {
+ "name": "swiftmailer/swiftmailer",
+ "version": "v5.4.1",
+ "version_normalized": "5.4.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/swiftmailer/swiftmailer.git",
+ "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0697e6aa65c83edf97bb0f23d8763f94e3f11421",
+ "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "require-dev": {
+ "mockery/mockery": "~0.9.1,<0.9.4"
+ },
+ "time": "2015-06-06 14:19:39",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.4-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "files": [
+ "lib/swift_required.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Chris Corbyn"
+ },
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ }
+ ],
+ "description": "Swiftmailer, free feature-rich PHP mailer",
+ "homepage": "http://swiftmailer.org",
+ "keywords": [
+ "email",
+ "mail",
+ "mailer"
+ ]
+ },
+ {
+ "name": "illuminate/mail",
+ "version": "v5.1.31",
+ "version_normalized": "5.1.31.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/illuminate/mail.git",
+ "reference": "a4b3bd4f8301ac22d31f1e82698803fdf693bc01"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/illuminate/mail/zipball/a4b3bd4f8301ac22d31f1e82698803fdf693bc01",
+ "reference": "a4b3bd4f8301ac22d31f1e82698803fdf693bc01",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/container": "5.1.*",
+ "illuminate/contracts": "5.1.*",
+ "illuminate/support": "5.1.*",
+ "php": ">=5.5.9",
+ "psr/log": "~1.0",
+ "swiftmailer/swiftmailer": "~5.1"
+ },
+ "suggest": {
+ "aws/aws-sdk-php": "Required to use the SES mail driver (~3.0).",
+ "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers (~5.3|~6.0)."
+ },
+ "time": "2015-12-05 16:21:24",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.1-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Illuminate\\Mail\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylorotwell@gmail.com"
+ }
+ ],
+ "description": "The Illuminate Mail package.",
+ "homepage": "http://laravel.com"
}
]