Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using new shield prefix #691

Merged
merged 1 commit into from
Aug 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"presta/sitemap-bundle": "^3.0",
"sensio/framework-extra-bundle": "^6.0",
"sentry/sentry-symfony": "^4.0",
"shield-w4ll/curriculum-bundle": "^0.2",
"shield-w4ll/simple-authenticator": "^0.2",
"shield-wall/curriculum-bundle": "^0.3",
"shield-wall/simple-authenticator": "^0.3",
"stof/doctrine-extensions-bundle": "^1.7",
"symfony/console": "^v6.1",
"symfony/dotenv": "^v6.1",
Expand Down
618 changes: 196 additions & 422 deletions composer.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle::class => ['dev' => true, 'test' => true],
Fidry\AliceDataFixtures\Bridge\Symfony\FidryAliceDataFixturesBundle::class => ['dev' => true, 'test' => true],
Hautelook\AliceBundle\HautelookAliceBundle::class => ['dev' => true, 'test' => true],
ShieldW4ll\SimpleAuthenticator\SimpleAuthenticatorBundle::class => ['dev' => true, 'test' => true],
ShieldW4ll\CurriculumBundle\CurriculumBundle::class => ['all' => true],
ShieldWall\SimpleAuthenticator\SimpleAuthenticatorBundle::class => ['dev' => true, 'test' => true],
ShieldWall\CurriculumBundle\CurriculumBundle::class => ['all' => true],
];
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ when@dev:
firewalls:
main:
custom_authenticators:
- ShieldW4ll\SimpleAuthenticator\Security\EmailAuthenticator
- ShieldWall\SimpleAuthenticator\Security\EmailAuthenticator
File renamed without changes.
8 changes: 4 additions & 4 deletions config/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
string $cdnHostWithPrefix: '%cdn.dns%/%bucket.name%'
string $bucketHostWithPrefix: '%bucket.dns%/%bucket.name%'
League\OAuth2\Client\Provider\AbstractProvider $googleAuthProvider: '@League\OAuth2\Client\Provider\Google'
# ShieldW4ll\SimpleAuthenticator\Repository\EmailRepositoryInterface $emailRepository: '@App\Repository\UserRepository'
# ShieldWall\SimpleAuthenticator\Repository\EmailRepositoryInterface $emailRepository: '@App\Repository\UserRepository'

# makes classes in src/ available to be used as services
# this creates a service per class whose id is the fully-qualified class name
Expand Down Expand Up @@ -87,9 +87,9 @@ services:
clientSecret: '%env(string:THIRD_PARTY___GOOGLE_SECRET_ID)%'
redirectUri: '%env(string:THIRD_PARTY___GOOGLE_CALLBACK)%'
#
ShieldW4ll\SimpleAuthenticator\Security\EmailAuthenticator:
ShieldWall\SimpleAuthenticator\Security\EmailAuthenticator:
arguments:
- '@Symfony\Component\Routing\Generator\UrlGeneratorInterface'
- '@App\Repository\UserRepository'
- '%shield_w4ll.simple_authenticator.route.redirect_success%'
- '%shield_w4ll.simple_authenticator.route.redirect_failure%'
- '%shield_wall.simple_authenticator.route.redirect_success%'
- '%shield_wall.simple_authenticator.route.redirect_failure%'
2 changes: 1 addition & 1 deletion src/Controller/Site/SiteController.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use App\ThirdCode\Contracts\SpeakLanguageInterface;
use App\ThirdCode\Contracts\UserInfoInterface;
use App\ThirdCode\Contracts\UserSocialNetworkInterface;
use ShieldW4ll\SimpleAuthenticator\Form\SimpleAuthenticatorType;
use ShieldWall\SimpleAuthenticator\Form\SimpleAuthenticatorType;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
Expand Down
2 changes: 1 addition & 1 deletion src/ThirdCode/Contracts/AddressInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\ThirdCode\Contracts;

use ShieldW4ll\CurriculumBundle\Contract\AddressInterface as BaseAddressInterface;
use ShieldWall\CurriculumBundle\Contract\AddressInterface as BaseAddressInterface;

interface AddressInterface extends BaseAddressInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ThirdCode/Contracts/CertificationInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\ThirdCode\Contracts;

use ShieldW4ll\CurriculumBundle\Contract\CertificationInterface as BaseCertificationInterface;
use ShieldWall\CurriculumBundle\Contract\CertificationInterface as BaseCertificationInterface;

interface CertificationInterface extends BaseCertificationInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ThirdCode/Contracts/EducationInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\ThirdCode\Contracts;

use ShieldW4ll\CurriculumBundle\Contract\EducationInterface as BaseEducationInterface;
use ShieldWall\CurriculumBundle\Contract\EducationInterface as BaseEducationInterface;

interface EducationInterface extends BaseEducationInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ThirdCode/Contracts/ExperienceInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\ThirdCode\Contracts;

use ShieldW4ll\CurriculumBundle\Contract\ExperienceInterface as BaseExperienceInterface;
use ShieldWall\CurriculumBundle\Contract\ExperienceInterface as BaseExperienceInterface;

interface ExperienceInterface extends BaseExperienceInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\ThirdCode\Contracts\Repository;

use ShieldW4ll\SimpleAuthenticator\Repository\EmailRepositoryInterface as EmailRepositoryInterfaceBase;
use ShieldWall\SimpleAuthenticator\Repository\EmailRepositoryInterface as EmailRepositoryInterfaceBase;

interface EmailRepositoryInterface extends EmailRepositoryInterfaceBase
{
Expand Down
2 changes: 1 addition & 1 deletion src/ThirdCode/Contracts/SkillInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\ThirdCode\Contracts;

use ShieldW4ll\CurriculumBundle\Contract\SkillInterface as BaseSkillInterface;
use ShieldWall\CurriculumBundle\Contract\SkillInterface as BaseSkillInterface;

interface SkillInterface extends BaseSkillInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ThirdCode/Contracts/SpeakLanguageInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\ThirdCode\Contracts;

use ShieldW4ll\CurriculumBundle\Contract\SpeakLanguageInterface as BaseSpeakLanguageInterface;
use ShieldWall\CurriculumBundle\Contract\SpeakLanguageInterface as BaseSpeakLanguageInterface;

interface SpeakLanguageInterface extends BaseSpeakLanguageInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ThirdCode/Contracts/UserInfoInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\ThirdCode\Contracts;

use ShieldW4ll\CurriculumBundle\Contract\UserInfoInterface as BaseUserInfoInterface;
use ShieldWall\CurriculumBundle\Contract\UserInfoInterface as BaseUserInfoInterface;

interface UserInfoInterface extends BaseUserInfoInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ThirdCode/Contracts/UserSocialNetworkInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\ThirdCode\Contracts;

use ShieldW4ll\CurriculumBundle\Contract\SocialNetworkInterface as BaseSocialNetworkInterface;
use ShieldWall\CurriculumBundle\Contract\SocialNetworkInterface as BaseSocialNetworkInterface;

interface UserSocialNetworkInterface extends BaseSocialNetworkInterface
{
Expand Down
8 changes: 4 additions & 4 deletions symfony.lock
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,11 @@
"config/packages/sentry.yaml"
]
},
"shield-w4ll/curriculum-bundle": {
"version": "v0.1.0"
"shield-wall/curriculum-bundle": {
"version": "v0.2.0"
},
"shield-w4ll/simple-authenticator": {
"version": "v0.1.0"
"shield-wall/simple-authenticator": {
"version": "v0.3.2"
},
"stof/doctrine-extensions-bundle": {
"version": "1.7",
Expand Down