Browse code

Add mapping helper and configuration

Benjamin Roth authored on07/11/2024 13:35:01
Showing1 changed files
... ...
@@ -10,3 +10,6 @@ services:
10 10
 
11 11
     vonRotenberg\ShopwareApiBundle\API\Shopware:
12 12
         public: true
13
+
14
+    vonRotenberg\ShopwareApiBundle\Helper\ShopwareMappings:
15
+        public: true
Browse code

Basic setup for API service class and test api command

Benjamin Roth authored on18/10/2024 14:20:37
Showing1 changed files
... ...
@@ -7,3 +7,6 @@ services:
7 7
     vonRotenberg\ShopwareApiBundle\:
8 8
         resource: ../src
9 9
         exclude: ../src/{VonrotenbergShopwareApiBundle.php,ContaoManager,Entity,Migrations,Model,Resources,Tests,Widget}
10
+
11
+    vonRotenberg\ShopwareApiBundle\API\Shopware:
12
+        public: true
Browse code

Initial commit

Benjamin Roth authored on18/10/2024 10:47:52
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,9 @@
1
+services:
2
+    _defaults:
3
+        autowire: true
4
+        autoconfigure: true
5
+        public: false
6
+
7
+    vonRotenberg\ShopwareApiBundle\:
8
+        resource: ../src
9
+        exclude: ../src/{VonrotenbergShopwareApiBundle.php,ContaoManager,Entity,Migrations,Model,Resources,Tests,Widget}