Browse code

Change composer namespace

Benjamin Roth authored on07/02/2024 10:15:21
Showing1 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 {
2
-    "name": "do-while/contao-signature-formfield-bundle",
2
+    "name": "vonrotenberg/contao-signature-formfield-bundle",
3 3
     "description": "Signature form field for Contao form generator",
4 4
     "keywords": ["contao", "widget", "signature", "forms"],
5 5
     "type": "contao-bundle",
Browse code

Correct license identifier

Hagen Klemp authored on05/02/2019 18:37:52
Showing1 changed files
... ...
@@ -4,7 +4,7 @@
4 4
     "keywords": ["contao", "widget", "signature", "forms"],
5 5
     "type": "contao-bundle",
6 6
     "homepage": "https://www.softleister.de",
7
-    "license": "MIT License",
7
+    "license": "MIT",
8 8
     "authors": [{
9 9
         "name": "Softleister - Hagen Klemp",
10 10
         "homepage": "https://www.softleister.de",
Browse code

Initial

Hagen Klemp authored on03/02/2019 23:08:50
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,36 @@
1
+{
2
+    "name": "do-while/contao-signature-formfield-bundle",
3
+    "description": "Signature form field for Contao form generator",
4
+    "keywords": ["contao", "widget", "signature", "forms"],
5
+    "type": "contao-bundle",
6
+    "homepage": "https://www.softleister.de",
7
+    "license": "MIT License",
8
+    "authors": [{
9
+        "name": "Softleister - Hagen Klemp",
10
+        "homepage": "https://www.softleister.de",
11
+        "role": "Developer"
12
+    }],
13
+    "support": {
14
+        "email": "info@softleister.de"
15
+    },
16
+    "require": {
17
+        "php": ">=5.6.0",
18
+        "contao/core-bundle": "~4.4"
19
+    },
20
+    "autoload": {
21
+        "psr-4": {
22
+            "Softleister\\SignatureformfieldBundle\\": "src/"
23
+        },
24
+        "classmap": [
25
+            "src/Resources/contao/"
26
+        ],
27
+        "exclude-from-classmap": [
28
+            "src/Resources/contao/config/",
29
+            "src/Resources/contao/dca/",
30
+            "src/Resources/contao/languages/"
31
+        ]
32
+    },
33
+    "extra": {
34
+		"contao-manager-plugin": "Softleister\\SignatureformfieldBundle\\ContaoManager\\Plugin"
35
+    }
36
+}