The Wayback Machine - https://web.archive.org/web/20200526161823/https://github.com/topics/php-library
Skip to content
#

php-library

Here are 1,845 public repositories matching this topic...

PHPMailer
PhilippGrashoff
PhilippGrashoff commented Jan 22, 2020

Hi there,
after spending quite some time figuring why Email sending with a certain smtp server does not work, I found its an SSL issue.

Most widely on the web the found solution is to unset some ssl checks:

$mail->SMTPOptions = array(
    'ssl' => array(
        'verify_peer' => false,
        'verify_peer_name' => false,
        'allow_self_signed' => true
    )
);

However

MaxXxaM
MaxXxaM commented Sep 27, 2019

This code bellow from documentation don't work:

$validation = $validator->validate($data, [
    'enabled' => [
        'required', 
        $validator('in', [true, 1])->strict()
    ]
]);

Because strict() method return void

Edit documentation like this:

/** @var In $boolValidator */
$boolValidator = $validator('in', [true, 1]);
$boolValidator->strict();

$validation 
Jalle19
Jalle19 commented Oct 23, 2018

Is your feature request related to a problem? Please describe.

Lots of people use Laravel, and they expect there to be an easy to use service provider available

Describe the solution you'd like

Make a digiaonline/laravel-graphql package (naming is up for debate)

Improve this page

Add a description, image, and links to the php-library topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the php-library topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.