Browse code

Initial commit

Benjamin Roth authored on14/03/2023 16:28:03
Showing1 changed files
... ...
@@ -16,6 +16,7 @@
16 16
     "require": {
17 17
         "php": "^7.4 || ^8.0",
18 18
         "contao/core-bundle": "^4.13",
19
+        "contao/news-bundle": "^4.13",
19 20
         "terminal42/notification_center": "^1.6"
20 21
     },
21 22
     "require-dev": {
Browse code

Initial commit

Benjamin Roth authored on14/03/2023 14:08:46
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,66 @@
1
+{
2
+    "name": "vonrotenberg/newsmailer-bundle",
3
+    "description": "Newsmailer contao bundle",
4
+    "license": "LGPL-3.0-or-later",
5
+    "type": "contao-bundle",
6
+    "authors": [
7
+        {
8
+            "name": "Benjamin Roth",
9
+            "homepage": "https://www.vonrotenberg.de"
10
+        }
11
+    ],
12
+    "homepage": "https://www.vonrotenberg.de",
13
+    "support": {
14
+        "issues": "https://www.vonrotenberg.de"
15
+    },
16
+    "require": {
17
+        "php": "^7.4 || ^8.0",
18
+        "contao/core-bundle": "^4.13",
19
+        "terminal42/notification_center": "^1.6"
20
+    },
21
+    "require-dev": {
22
+        "bamarni/composer-bin-plugin": "^1.5",
23
+        "contao/manager-plugin": "^2.0",
24
+        "phpunit/phpunit": "^9.5",
25
+        "symfony/phpunit-bridge": "^6.1"
26
+    },
27
+    "conflict": {
28
+        "contao/manager-plugin": "<2.0 || >=3.0"
29
+    },
30
+    "autoload": {
31
+        "psr-4": {
32
+            "vonRotenberg\\NewsmailerBundle\\": "src/"
33
+        }
34
+    },
35
+    "autoload-dev": {
36
+        "psr-4": {
37
+            "vonRotenberg\\NewsmailerBundle\\Tests\\": "tests/"
38
+        }
39
+    },
40
+    "config": {
41
+        "allow-plugins": {
42
+            "bamarni/composer-bin-plugin": true,
43
+            "contao-components/installer": true,
44
+            "contao/manager-plugin": true,
45
+            "php-http/discovery": true,
46
+            "contao-community-alliance/composer-plugin": true
47
+        }
48
+    },
49
+    "extra": {
50
+        "bamarni-bin": {
51
+            "bin-links": false,
52
+            "target-directory": "tools"
53
+        },
54
+        "contao-manager-plugin": "vonRotenberg\\NewsmailerBundle\\ContaoManager\\Plugin"
55
+    },
56
+    "scripts": {
57
+        "all": [
58
+            "@unit-tests",
59
+            "@ecs",
60
+            "@phpstan"
61
+        ],
62
+        "ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi",
63
+        "phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
64
+        "unit-tests": "@php vendor/bin/phpunit --colors=always"
65
+    }
66
+}