Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1bcca09
fix(symfony): provider can throw validation exception (#5586)
soyuka May 11, 2023
547078c
fix: allowed composite identifiers with differents types
Sarahshr May 22, 2023
a0f12b6
fix(serializer): disable_type_enforcement with null values (#5593)
soyuka May 23, 2023
354d84d
ci: php8 is allowed
soyuka May 23, 2023
57bfefb
fix(metadata): convert composite uri variables w/ proper type
soyuka May 23, 2023
fec529d
ci: phpstan
soyuka May 23, 2023
d5a299a
style: symfony rules has use_nullable_type_declaration to false
soyuka May 23, 2023
f5bc28f
cs: remove print
soyuka May 23, 2023
ee8d267
chore: bump javascript dependencies
soyuka May 24, 2023
1fe505a
chore: v3.1.12 changelog
soyuka May 24, 2023
a09e258
fix: allows changing getters and setters without breaks (#5601)
Sarahshr May 28, 2023
14969aa
fix(serializer): put replaces embed collection (#5604)
soyuka May 30, 2023
0c1c1c3
fix: enable API Platform integration in LexikJWTAuthenticationBundle …
alanpoulain Jun 2, 2023
a879623
fix: filters don't have to implement the "legacy" FilterInterface (#…
mrossard Jun 8, 2023
5f8e4a8
test: interface as output (#5621)
Sarahshr Jun 9, 2023
b6acbce
style: maker bundle now applies php-cs-fixer (#5628)
soyuka Jun 13, 2023
c9b279f
fix: improve Processor and Provider PHPDoc (#5627)
dunglas Jun 13, 2023
f794201
Add description on an internal class
soyuka Jul 1, 2023
b8cbdb1
fix: search on nested sub-entity that doesn't use "id" as its ORM ide…
mrossard Jul 5, 2023
0fe4f4d
ci: behat context + cs (#5651)
soyuka Jul 5, 2023
d971c2e
cs: various fixes
soyuka Jul 6, 2023
31a3e87
Merge branch 3.1 into main
soyuka Jul 6, 2023
bdbab30
cs
soyuka Jul 7, 2023
2df34d8
tests
soyuka Jul 7, 2023
c9d729e
tests
soyuka Jul 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: enable API Platform integration in LexikJWTAuthenticationBundle (#…
  • Loading branch information
alanpoulain authored Jun 2, 2023
commit 0c1c1c36f55ba96119e6c22ea25fb69c85b20161
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@ public function prepend(ContainerBuilder $container): void
],
]);
}
if (isset($container->getExtensions()['lexik_jwt_authentication'])) {
$container->prependExtensionConfig('lexik_jwt_authentication', [
'api_platform' => [
'enabled' => true,
],
]);
}
}

/**
Expand Down