]> Raphaël G. Git Repositories - packbundle/commitdiff
Fix documentation 0.2.4
authorRaphaël Gertz <git@rapsys.eu>
Sat, 29 Jul 2023 11:05:19 +0000 (13:05 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Sat, 29 Jul 2023 11:05:19 +0000 (13:05 +0200)
Add symfony 7.x support

README.md
composer.json

index 9550e6b520f458d0838f820b828f5d423f1dd024..e51fc22742ea9b5e609dc8314fbdc76bd727dead 100644 (file)
--- a/README.md
+++ b/README.md
@@ -38,11 +38,11 @@ Add bundle custom repository to your project's `composer.json` file:
                                        }
                                },
                                "require": {
-                                       "symfony/asset": "^4.0|^5.0",
-                                       "symfony/flex": "^1.0",
-                                       "symfony/framework-bundle": "^4.0|^5.0",
-                                       "symfony/process": "^4.0|^5.0",
-                                       "symfony/twig-bundle": "^4.0|^5.0"
+                                       "symfony/asset": "^4.0|^5.0|^6.0|^7.0",
+                                       "symfony/flex": "^1.0|^2.0",
+                                       "symfony/framework-bundle": "^4.0|^5.0|^6.0|^7.0",
+                                       "symfony/process": "^4.0|^5.0|^6.0|^7.0",
+                                       "symfony/twig-bundle": "^4.0|^5.0|^6.0|^7.0"
                                }
                        }
                }
@@ -131,7 +131,7 @@ services:
         public: true
     #Register facebook event subscriber
     Rapsys\PackBundle\Subscriber\FacebookSubscriber:
-        arguments: [ '@router', '%rapsys_air.locales%' ]
+        arguments: [ '@router', [] ]
         tags: [ 'kernel.event_subscriber' ]
     #Register intl util class alias
     Rapsys\PackBundle\Util\IntlUtil:
@@ -181,6 +181,23 @@ services:
         tags: [ 'form.type' ]
 ```
 
+Setup configuration file `config/packages/myproject.yaml` with the following
+content available in `Resources/config/packages/rapsys_pack.yaml`:
+
+```yaml
+#Services configuration
+services:
+    #Register facebook event subscriber
+    Rapsys\PackBundle\Subscriber\FacebookSubscriber:
+        arguments: [ '@router', [ 'en', 'en_gb', 'en_us', 'fr', 'fr_fr' ] ]
+        tags: [ 'kernel.event_subscriber' ]
+    #Register facebook util service
+    rapsys_blog.facebook_util:
+        class: 'Rapsys\PackBundle\Util\FacebookUtil'
+        arguments: [ '@router',  '%kernel.project_dir%/var/cache', '%rapsys_pack.path%', 'facebook', '%kernel.project_dir%/public/png/facebook.png' ]
+        public: true
+```
+
 Open a command console, enter your project directory and execute the following
 command to see default bundle configuration:
 
index 1a6a6d82beaea3ae1c25559cb481ec62bee968bc..5f9d93b8ddcc4b621a9bd112eebcf0061ff655dc 100644 (file)
         }
     },
     "require": {
-        "symfony/asset": "^4.0|^5.0|^6.0",
+        "symfony/asset": "^4.0|^5.0|^6.0|^7.0",
         "symfony/flex": "^1.0|^2.0",
-        "symfony/framework-bundle": "^4.0|^5.0|^6.0",
-        "symfony/process": "^4.0|^5.0|^6.0",
-        "symfony/twig-bundle": "^4.0|^5.0|^6.0"
+        "symfony/framework-bundle": "^4.0|^5.0|^6.0|^7.0",
+        "symfony/process": "^4.0|^5.0|^6.0|^7.0",
+        "symfony/twig-bundle": "^4.0|^5.0|^6.0|^7.0"
     },
     "extra": {
         "branch-alias": {