-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor #230 Support Sylius 1.7 again (Zales0123)
This PR was merged into the 1.0-dev branch. Discussion ---------- With the latest `v1.0.0-RC.4`, we've introduced support for Doctrine Migrations 3.0. However, it required from us also to support only Sylius ^1.8... with the support for Sylius ^1.5 in the previous tag. I believe it was a mistake. Doing such a big and work-demanding change as migrations version switch together with bumping Sylius requirement by 3 versions can be a pain in the back for a lot of developers using `RefundPlugin` already. I think that doing a step backward can improve the developer experience for those, who already use this plugin. Definitely, the next release (hopefully the stable one already 🤞) would support Sylius 1.8 only, so this one is just an intermediate stage. The implementation is not perfect as well but allows us to test 2 versions of Sylius along with 2 versions of PHP and MySQL 💃 I would love to see your opinion 🖖 Commits ------- 04c2f7e Support for Sylius 1.7 363abc9 Provide configuration for Travis with Sylius 1.8 755d53f Use custom namespace in migrations by default 5394c61 Check doctrine configuration necessity in a little bit better way b6b62e0 Use Sylius 1.8 as the default version
- Loading branch information
Showing
22 changed files
with
316 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?php | ||
|
||
return [ | ||
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], | ||
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true], | ||
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], | ||
Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true], | ||
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], | ||
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], | ||
Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true], | ||
Sylius\Bundle\OrderBundle\SyliusOrderBundle::class => ['all' => true], | ||
Sylius\Bundle\MoneyBundle\SyliusMoneyBundle::class => ['all' => true], | ||
Sylius\Bundle\CurrencyBundle\SyliusCurrencyBundle::class => ['all' => true], | ||
Sylius\Bundle\LocaleBundle\SyliusLocaleBundle::class => ['all' => true], | ||
Sylius\Bundle\ProductBundle\SyliusProductBundle::class => ['all' => true], | ||
Sylius\Bundle\ChannelBundle\SyliusChannelBundle::class => ['all' => true], | ||
Sylius\Bundle\AttributeBundle\SyliusAttributeBundle::class => ['all' => true], | ||
Sylius\Bundle\TaxationBundle\SyliusTaxationBundle::class => ['all' => true], | ||
Sylius\Bundle\ShippingBundle\SyliusShippingBundle::class => ['all' => true], | ||
Sylius\Bundle\PaymentBundle\SyliusPaymentBundle::class => ['all' => true], | ||
Sylius\Bundle\MailerBundle\SyliusMailerBundle::class => ['all' => true], | ||
Sylius\Bundle\PromotionBundle\SyliusPromotionBundle::class => ['all' => true], | ||
Sylius\Bundle\AddressingBundle\SyliusAddressingBundle::class => ['all' => true], | ||
Sylius\Bundle\InventoryBundle\SyliusInventoryBundle::class => ['all' => true], | ||
Sylius\Bundle\TaxonomyBundle\SyliusTaxonomyBundle::class => ['all' => true], | ||
Sylius\Bundle\UserBundle\SyliusUserBundle::class => ['all' => true], | ||
Sylius\Bundle\CustomerBundle\SyliusCustomerBundle::class => ['all' => true], | ||
Sylius\Bundle\UiBundle\SyliusUiBundle::class => ['all' => true], | ||
Sylius\Bundle\ReviewBundle\SyliusReviewBundle::class => ['all' => true], | ||
Sylius\Bundle\CoreBundle\SyliusCoreBundle::class => ['all' => true], | ||
Sylius\Bundle\ResourceBundle\SyliusResourceBundle::class => ['all' => true], | ||
Sylius\Bundle\GridBundle\SyliusGridBundle::class => ['all' => true], | ||
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true], | ||
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true], | ||
Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle::class => ['all' => true], | ||
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true], | ||
FOS\RestBundle\FOSRestBundle::class => ['all' => true], | ||
Knp\Bundle\GaufretteBundle\KnpGaufretteBundle::class => ['all' => true], | ||
Knp\Bundle\MenuBundle\KnpMenuBundle::class => ['all' => true], | ||
Liip\ImagineBundle\LiipImagineBundle::class => ['all' => true], | ||
Payum\Bundle\PayumBundle\PayumBundle::class => ['all' => true], | ||
Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true], | ||
WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle::class => ['all' => true], | ||
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], | ||
Sylius\Bundle\FixturesBundle\SyliusFixturesBundle::class => ['all' => true], | ||
Sylius\Bundle\PayumBundle\SyliusPayumBundle::class => ['all' => true], | ||
Sylius\Bundle\ThemeBundle\SyliusThemeBundle::class => ['all' => true], | ||
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['all' => true], | ||
Sylius\Bundle\AdminBundle\SyliusAdminBundle::class => ['all' => true], | ||
Sylius\Bundle\ShopBundle\SyliusShopBundle::class => ['all' => true], | ||
FOS\OAuthServerBundle\FOSOAuthServerBundle::class => ['all' => true], | ||
Sylius\Bundle\AdminApiBundle\SyliusAdminApiBundle::class => ['all' => true], | ||
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true, 'test_cached' => true], | ||
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true, 'test_cached' => true], | ||
Sylius\RefundPlugin\SyliusRefundPlugin::class => ['all' => true], | ||
Knp\Bundle\SnappyBundle\KnpSnappyBundle::class => ['all' => true], | ||
FriendsOfBehat\SymfonyExtension\Bundle\FriendsOfBehatSymfonyExtensionBundle::class => ['test' => true, 'test_cached' => true], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
doctrine_migrations: | ||
dir_name: "%kernel.project_dir%/src/Migrations" | ||
namespace: DoctrineMigrations |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Sylius package. | ||
* | ||
* (c) Paweł Jędrzejewski | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DoctrineMigrations; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use Doctrine\Migrations\AbstractMigration; | ||
|
||
final class Version20200110132702 extends AbstractMigration | ||
{ | ||
public function up(Schema $schema): void | ||
{ | ||
// this up() migration is auto-generated, please modify it to your needs | ||
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); | ||
|
||
$this->addSql('ALTER TABLE sylius_channel ADD menu_taxon_id INT DEFAULT NULL'); | ||
$this->addSql('ALTER TABLE sylius_channel ADD CONSTRAINT FK_16C8119EF242B1E6 FOREIGN KEY (menu_taxon_id) REFERENCES sylius_taxon (id) ON DELETE SET NULL'); | ||
$this->addSql('CREATE INDEX IDX_16C8119EF242B1E6 ON sylius_channel (menu_taxon_id)'); | ||
} | ||
|
||
public function down(Schema $schema): void | ||
{ | ||
// this down() migration is auto-generated, please modify it to your needs | ||
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); | ||
|
||
$this->addSql('ALTER TABLE sylius_channel DROP FOREIGN KEY FK_16C8119EF242B1E6'); | ||
$this->addSql('DROP INDEX IDX_16C8119EF242B1E6 ON sylius_channel'); | ||
$this->addSql('ALTER TABLE sylius_channel DROP menu_taxon_id'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DoctrineMigrations; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use Doctrine\Migrations\AbstractMigration; | ||
|
||
/** | ||
* Auto-generated Migration: Please modify to your needs! | ||
*/ | ||
final class Version20200122082429 extends AbstractMigration | ||
{ | ||
public function getDescription() : string | ||
{ | ||
return ''; | ||
} | ||
|
||
public function up(Schema $schema) : void | ||
{ | ||
// this up() migration is auto-generated, please modify it to your needs | ||
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); | ||
|
||
$this->addSql('CREATE TABLE sylius_channel_countries (channel_id INT NOT NULL, country_id INT NOT NULL, INDEX IDX_D96E51AE72F5A1AA (channel_id), INDEX IDX_D96E51AEF92F3E70 (country_id), PRIMARY KEY(channel_id, country_id)) DEFAULT CHARACTER SET UTF8 COLLATE `UTF8_unicode_ci` ENGINE = InnoDB'); | ||
$this->addSql('ALTER TABLE sylius_channel_countries ADD CONSTRAINT FK_D96E51AE72F5A1AA FOREIGN KEY (channel_id) REFERENCES sylius_channel (id) ON DELETE CASCADE'); | ||
$this->addSql('ALTER TABLE sylius_channel_countries ADD CONSTRAINT FK_D96E51AEF92F3E70 FOREIGN KEY (country_id) REFERENCES sylius_country (id) ON DELETE CASCADE'); | ||
} | ||
|
||
public function down(Schema $schema) : void | ||
{ | ||
// this down() migration is auto-generated, please modify it to your needs | ||
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); | ||
|
||
$this->addSql('DROP TABLE sylius_channel_countries'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DoctrineMigrations; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use Doctrine\Migrations\AbstractMigration; | ||
|
||
final class Version20200202104152 extends AbstractMigration | ||
{ | ||
public function up(Schema $schema): void | ||
{ | ||
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); | ||
|
||
$this->addSql('ALTER TABLE sylius_shipment ADD shipped_at DATETIME DEFAULT NULL'); | ||
} | ||
|
||
public function down(Schema $schema): void | ||
{ | ||
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); | ||
|
||
$this->addSql('ALTER TABLE sylius_shipment DROP shipped_at'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
parameters: | ||
sylius.security.admin_regex: "^/admin" | ||
sylius.security.api_regex: "^/api" | ||
sylius.security.shop_regex: "^/(?!admin|api/.*|api$|media/.*)[^/]++" | ||
|
||
security: | ||
providers: | ||
sylius_admin_user_provider: | ||
id: sylius.admin_user_provider.email_or_name_based | ||
sylius_shop_user_provider: | ||
id: sylius.shop_user_provider.email_or_name_based | ||
encoders: | ||
Sylius\Component\User\Model\UserInterface: argon2i | ||
firewalls: | ||
admin: | ||
switch_user: true | ||
context: admin | ||
pattern: "%sylius.security.admin_regex%" | ||
provider: sylius_admin_user_provider | ||
form_login: | ||
provider: sylius_admin_user_provider | ||
login_path: sylius_admin_login | ||
check_path: sylius_admin_login_check | ||
failure_path: sylius_admin_login | ||
default_target_path: sylius_admin_dashboard | ||
use_forward: false | ||
use_referer: true | ||
csrf_token_generator: security.csrf.token_manager | ||
csrf_parameter: _csrf_admin_security_token | ||
csrf_token_id: admin_authenticate | ||
remember_me: | ||
secret: "%env(APP_SECRET)%" | ||
path: /admin | ||
name: APP_ADMIN_REMEMBER_ME | ||
lifetime: 31536000 | ||
remember_me_parameter: _remember_me | ||
logout: | ||
path: sylius_admin_logout | ||
target: sylius_admin_login | ||
anonymous: true | ||
|
||
oauth_token: | ||
pattern: "%sylius.security.api_regex%/oauth/v2/token" | ||
security: false | ||
|
||
api: | ||
pattern: "%sylius.security.api_regex%/.*" | ||
provider: sylius_admin_user_provider | ||
fos_oauth: true | ||
stateless: true | ||
anonymous: true | ||
|
||
shop: | ||
switch_user: { role: ROLE_ALLOWED_TO_SWITCH } | ||
context: shop | ||
pattern: "%sylius.security.shop_regex%" | ||
provider: sylius_shop_user_provider | ||
form_login: | ||
success_handler: sylius.authentication.success_handler | ||
failure_handler: sylius.authentication.failure_handler | ||
provider: sylius_shop_user_provider | ||
login_path: sylius_shop_login | ||
check_path: sylius_shop_login_check | ||
failure_path: sylius_shop_login | ||
default_target_path: sylius_shop_homepage | ||
use_forward: false | ||
use_referer: true | ||
csrf_token_generator: security.csrf.token_manager | ||
csrf_parameter: _csrf_shop_security_token | ||
csrf_token_id: shop_authenticate | ||
remember_me: | ||
secret: "%env(APP_SECRET)%" | ||
name: APP_SHOP_REMEMBER_ME | ||
lifetime: 31536000 | ||
remember_me_parameter: _remember_me | ||
logout: | ||
path: sylius_shop_logout | ||
target: sylius_shop_login | ||
invalidate_session: false | ||
success_handler: sylius.handler.shop_user_logout | ||
anonymous: true | ||
|
||
dev: | ||
pattern: ^/(_(profiler|wdt)|css|images|js)/ | ||
security: false | ||
|
||
access_control: | ||
- { path: "%sylius.security.admin_regex%/_partial", role: IS_AUTHENTICATED_ANONYMOUSLY, ips: [127.0.0.1, ::1] } | ||
- { path: "%sylius.security.admin_regex%/_partial", role: ROLE_NO_ACCESS } | ||
- { path: "%sylius.security.shop_regex%/_partial", role: IS_AUTHENTICATED_ANONYMOUSLY, ips: [127.0.0.1, ::1] } | ||
- { path: "%sylius.security.shop_regex%/_partial", role: ROLE_NO_ACCESS } | ||
|
||
- { path: "%sylius.security.admin_regex%/login", role: IS_AUTHENTICATED_ANONYMOUSLY } | ||
- { path: "%sylius.security.api_regex%/login", role: IS_AUTHENTICATED_ANONYMOUSLY } | ||
- { path: "%sylius.security.shop_regex%/login", role: IS_AUTHENTICATED_ANONYMOUSLY } | ||
|
||
- { path: "%sylius.security.shop_regex%/register", role: IS_AUTHENTICATED_ANONYMOUSLY } | ||
- { path: "%sylius.security.shop_regex%/verify", role: IS_AUTHENTICATED_ANONYMOUSLY } | ||
|
||
- { path: "%sylius.security.admin_regex%", role: ROLE_ADMINISTRATION_ACCESS } | ||
- { path: "%sylius.security.api_regex%/.*", role: ROLE_API_ACCESS } | ||
- { path: "%sylius.security.shop_regex%/account", role: ROLE_USER } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
tests/Application/config/packages/lexik_jwt_authentication.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
lexik_jwt_authentication: | ||
secret_key: '%env(resolve:JWT_SECRET_KEY)%' | ||
public_key: '%env(resolve:JWT_PUBLIC_KEY)%' | ||
pass_phrase: '%env(JWT_PASSPHRASE)%' | ||
secret_key: 'SECRET' | ||
public_key: 'PUBLIC' | ||
pass_phrase: 'PASS_PHRASE' |
Oops, something went wrong.