OAuth client integration for Symfony. Supports both OAuth1.0a and OAuth2.
Elasticsearch PHP integration for your Symfony project using Elastica.
PHP Implementation of Largest Area Fit First (LAFF) 3D (three dimentions) box packing algorithm
Allow linking to specific lines in files (#228)
Bump phpstan/phpstan from 1.10.6 to 1.10.7
Bumps phpstan/phpstan from 1.10.6 to 1.10.7.
updated-dependencies:
Signed-off-by: dependabot[bot] support@github.com
Merge pull request #229 from norberttech/dependabot/composer/phpstan/phpstan-1.10.7
Bump phpstan/phpstan from 1.10.6 to 1.10.7
Fixed regexp to not catch digits in file extensions
GitHub allows us to link to specific lines in code, like line 7 in composer.json
file.
According to PHP docs, method class_implements()
can return array<string, class-string>
or false
, but running PHPStan with option treatPhpdocTypeAsCertain
, fails to match false
.
With treatPhpdocTypeAsCertain
: https://phpstan.org/r/ed78e38c-440e-46ad-99b1-387f00f02611
Without: https://phpstan.org/r/2430d310-52a4-4a73-863d-a0aa8d73cf4c
No error report with option treatPhpdocTypeAsCertain
enabled.
Bump rector/rector from 0.15.19 to 0.15.20
Bumps rector/rector from 0.15.19 to 0.15.20.
updated-dependencies:
Signed-off-by: dependabot[bot] support@github.com
Merge pull request #344 from flow-php/dependabot/composer/rector/rector-0.15.20
Bump rector/rector from 0.15.19 to 0.15.20
Remove support for not maintained Doctrine DBAL versions (#342)
Co-authored-by: Norbert Orzechowicz 1921950+norberttech@users.noreply.github.com
Add support for Sqlite database
Changes:
| Q | A | --------------- | ----- | Branch? | 1.10-dev, but possibly lower as well | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | License | MIT
Having that framework.messenger.default_bus
being set, makes impossible to declared own one & forces to use sylius_default.bus
as bus in our project.
As calling Doctrine class expect callable
we can try to workaround this with __invoke()
method.
| Q | A | --------------- | ----- | Branch? | 1.10 | Bug fix? | no | New feature? | no | BC breaks? | no* | Deprecations? | no | License | MIT
Please read for Symfony decision why this is good idea: https://github.com/symfony/symfony/pull/33579
This also improves our 🌍 impact as developers cause smaller zips, mean less traffic, which reduces can a little reduce amount of pollution 🏭 !
Current master
| My PR
------------ | -------------
Zip ~32M | Zip ~18M
| Q | A | --------------- | ----- | Branch? | 1.9 | Bug fix? | yes | New feature? | no | BC breaks? | no(?) | Deprecations? | no | License | MIT
Using: MariabDB:10.4.12
Error while running migration:
In DBALException.php line 282:
Unknown column type " json" requested. Any Doctrine type that you use has t
o be registered with \Doctrine\DBAL\Types\Type::addType(). You can get a li
st of all the known types with \Doctrine\DBAL\Types\Type::getTypesMap(). If
this error occurs during database introspection then you might have forgot
ten to register all database types for a Doctrine Type. Use AbstractPlatfor
m#registerDoctrineTypeMapping() or have your custom types implement Type#ge
tMappedDatabaseTypes(). If the type name is empty you might have a problem
with the cache or forgot some mapping information.
Setting this doesn't help ;)
doctrine:
dbal:
types:
json: Doctrine\DBAL\Types\JsonType
That version supports newest PHP 7 & 8.