Skip to content

Commit

Permalink
Merge pull request #46 from Setono/php8
Browse files Browse the repository at this point in the history
Allowed: SF5.3
  • Loading branch information
loevgaard authored Jan 24, 2022
2 parents 42d9863 + c3b5f05 commit 85eb8c5
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 54 deletions.
82 changes: 42 additions & 40 deletions composer-require-checker.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,44 @@
{
"symbol-whitelist": [
"array",
"bool",
"callable",
"false",
"float",
"int",
"iterable",
"null",
"object",
"parent",
"self",
"static",
"string",
"true",
"void",
"Sylius\\Bundle\\CoreBundle\\Application\\SyliusPluginTrait",
"Sylius\\Bundle\\ChannelBundle\\Form\\Type\\ChannelChoiceType",
"Sylius\\Bundle\\CoreBundle\\Fixture\\AbstractResourceFixture",
"Sylius\\Bundle\\CoreBundle\\Fixture\\Factory\\AbstractExampleFactory",
"Sylius\\Bundle\\CoreBundle\\Fixture\\OptionsResolver\\LazyOption",
"Sylius\\Bundle\\UiBundle\\Menu\\Event\\MenuBuilderEvent",
"Sylius\\Component\\Channel\\Context\\ChannelContextInterface",
"Sylius\\Component\\Channel\\Model\\ChannelInterface",
"Sylius\\Component\\Channel\\Model\\ChannelsAwareInterface",
"Sylius\\Component\\Channel\\Repository\\ChannelRepositoryInterface",
"Sylius\\Component\\Customer\\Model\\CustomerInterface",
"Sylius\\Component\\Core\\Model\\CustomerInterface",
"Sylius\\Component\\Core\\Model\\OrderInterface",
"Sylius\\Component\\Core\\Model\\OrderItemInterface",
"Sylius\\Component\\Core\\Model\\ProductInterface",
"Sylius\\Component\\Core\\Model\\TaxonInterface",
"Sylius\\Component\\Locale\\Context\\LocaleContextInterface",
"Sylius\\Component\\Order\\Context\\CartContextInterface",
"Sylius\\Component\\Order\\Model\\OrderInterface",
"Sylius\\Component\\Order\\Repository\\OrderRepositoryInterface",
"Sylius\\Component\\Product\\Model\\ProductInterface",
"Sylius\\Component\\Taxonomy\\Model\\TaxonInterface",
"Sylius\\Component\\Taxonomy\\Repository\\TaxonRepositoryInterface"
]
"symbol-whitelist": [
"array",
"bool",
"callable",
"false",
"float",
"int",
"iterable",
"null",
"object",
"parent",
"self",
"static",
"string",
"true",
"void",
"Sylius\\Bundle\\ChannelBundle\\Form\\Type\\ChannelChoiceType",
"Sylius\\Bundle\\CoreBundle\\Application\\SyliusPluginTrait",
"Sylius\\Bundle\\CoreBundle\\Fixture\\AbstractResourceFixture",
"Sylius\\Bundle\\CoreBundle\\Fixture\\Factory\\AbstractExampleFactory",
"Sylius\\Bundle\\CoreBundle\\Fixture\\OptionsResolver\\LazyOption",
"Sylius\\Bundle\\UiBundle\\Menu\\Event\\MenuBuilderEvent",
"Sylius\\Component\\Channel\\Context\\ChannelContextInterface",
"Sylius\\Component\\Channel\\Model\\ChannelInterface",
"Sylius\\Component\\Channel\\Model\\ChannelsAwareInterface",
"Sylius\\Component\\Channel\\Repository\\ChannelRepositoryInterface",
"Sylius\\Component\\Core\\Model\\CustomerInterface",
"Sylius\\Component\\Core\\Model\\OrderInterface",
"Sylius\\Component\\Core\\Model\\OrderItemInterface",
"Sylius\\Component\\Core\\Model\\ProductInterface",
"Sylius\\Component\\Core\\Model\\TaxonInterface",
"Sylius\\Component\\Customer\\Model\\CustomerInterface",
"Sylius\\Component\\Locale\\Context\\LocaleContextInterface",
"Sylius\\Component\\Order\\Context\\CartContextInterface",
"Sylius\\Component\\Order\\Model\\OrderInterface",
"Sylius\\Component\\Order\\Repository\\OrderRepositoryInterface",
"Sylius\\Component\\Product\\Model\\ProductInterface",
"Sylius\\Component\\Taxonomy\\Model\\TaxonInterface",
"Sylius\\Component\\Taxonomy\\Repository\\TaxonRepositoryInterface",
"Symfony\\Component\\Security\\Csrf\\CsrfToken",
"Symfony\\Component\\Security\\Csrf\\CsrfTokenManagerInterface"
]
}
27 changes: 13 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "setono/sylius-facebook-plugin",
"type": "symfony-bundle",
"description": "Sylius plugin that tracks visitors and sends the data to Facebook",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"sylius",
"sylius-plugin",
"setono",
"facebook"
],
"license": "MIT",
"require": {
"php": ">=7.4",
"ext-json": "*",
"doctrine/collections": "^1.0",
"doctrine/dbal": "^2.10.2",
"doctrine/orm": "^2.6",
"facebook/php-business-sdk": "^12.0",
"fzaninotto/faker": "^1.6",
"fakerphp/faker": "^1.6",
"knplabs/knp-menu": "^3.0",
"psr/log": "^1.1",
"setono/bot-detection-bundle": "^1.1",
Expand All @@ -30,14 +30,13 @@
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/event-dispatcher": "^4.4 || ^5.0",
"symfony/form": "^4.4 || ^5.0",
"symfony/http-client": "^5.3",
"symfony/http-client": "^4.4 || ^5.0",
"symfony/http-client-contracts": "^2.4",
"symfony/http-foundation": "^4.4 || ^5.0.7",
"symfony/http-kernel": "^4.4 || ^5.1.5",
"symfony/lock": "^4.4 || ^5.0",
"symfony/options-resolver": "^4.4 || ^5.0",
"symfony/routing": "^4.4 || ^5.0",
"symfony/security": "^4.4 || ^5.0",
"symfony/security-bundle": "^4.4 || ^5.0",
"symfony/uid": "^4.4 || ^5.0",
"symfony/workflow": "^4.4 || ^5.0",
Expand All @@ -62,14 +61,7 @@
"symfony/intl": "^4.4 || ^5.0",
"symfony/web-profiler-bundle": "^5.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusFacebookPlugin\\": "src/"
Expand All @@ -83,7 +75,14 @@
"tests/Application/Kernel.php"
]
},
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"analyse": [
"@ensure-test-container-exists",
Expand Down

0 comments on commit 85eb8c5

Please sign in to comment.