-
Updated
May 25, 2020
php-library
Here are 1,845 public repositories matching this topic...
Is there any plugins in wordpress,basically made by using this library ? If yes please feel free to share.And can I make the plugin just like featuring the functionality of publicize of jetpack using this library ?
-
Updated
Apr 23, 2020 - PHP
-
Updated
Apr 23, 2020 - PHP
With SVG output, text is not centered vertically.
Chrome : not well centered
Edge : text is on top
Solution : correct default value + add parameters to give an offset X, Y to the text.
version : 2.1.0
-
Updated
Apr 24, 2020 - PHP
-
Updated
May 14, 2020 - PHP
The repository description states This is first and only QR code reader that works without extensions. however this is false since this requires the GD Extension.
-
Updated
Jan 21, 2020 - PHP
-
Updated
Apr 25, 2020 - PHP
-
Updated
May 6, 2020 - PHP
-
Updated
Aug 15, 2019 - PHP
I noted the lack of a set function (as here). I built a sort of set function in a project of mine. At the moment it works only on array, what do you think if I make a porting of my function on your project?
What are your general guidelines to make a pull request? Do you have any suggest?
Best Regards
Domenico Rizzo
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
In the docs index.md files, links to other docs are broken (probably in all other MD files too). I tried in master and also in 6.x.
-
Updated
May 3, 2020 - PHP
-
Updated
May 20, 2020 - PHP
-
Updated
Feb 20, 2020 - PHP
-
Updated
May 23, 2020 - PHP
-
Updated
Jun 14, 2019 - PHP
-
Updated
May 4, 2020 - PHP
-
Updated
Jan 13, 2020
-
Updated
Aug 18, 2019 - PHP
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)
-
Updated
Nov 19, 2019 - PHP
-
Updated
Apr 4, 2020 - PHP
Improve this page
Add a description, image, and links to the php-library topic page so that developers can more easily learn about it.
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."


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:
However