Browse code

Add geodata fields

Benjamin Roth authored on01/10/2024 11:59:29
Showing1 changed files
... ...
@@ -19,7 +19,8 @@
19 19
     "symfony/config": "^6.4",
20 20
     "symfony/dependency-injection": "^6.4",
21 21
     "symfony/http-kernel": "^6.4",
22
-    "vonrotenberg/htmx-bundle": "^1.0"
22
+    "vonrotenberg/htmx-bundle": "^1.0",
23
+    "con4gis/maps": "^9.0"
23 24
   },
24 25
   "require-dev": {
25 26
     "bamarni/composer-bin-plugin": "^1.5",
Browse code

Add htmx as dependency

Benjamin Roth authored on07/03/2024 15:30:56
Showing1 changed files
... ...
@@ -1,66 +1,73 @@
1 1
 {
2
-    "name": "vonrotenberg/contao-real_estate_listing-bundle",
3
-    "description": "Contao bundle for real estate listings",
4
-    "license": "commercial",
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": "^8.1",
18
-        "contao/core-bundle": "^5.3",
19
-        "symfony/config": "^6.4",
20
-        "symfony/dependency-injection": "^6.4",
21
-        "symfony/http-kernel": "^6.4"
22
-    },
23
-    "require-dev": {
24
-        "bamarni/composer-bin-plugin": "^1.5",
25
-        "contao/manager-plugin": "^2.0",
26
-        "phpunit/phpunit": "^9.5",
27
-        "symfony/phpunit-bridge": "^6.1"
28
-    },
29
-    "conflict": {
30
-        "contao/manager-plugin": "<2.0 || >=3.0"
31
-    },
32
-    "autoload": {
33
-        "psr-4": {
34
-            "vonRotenberg\\RealEstateListingBundle\\": "src/"
35
-        }
36
-    },
37
-    "autoload-dev": {
38
-        "psr-4": {
39
-            "vonRotenberg\\RealEstateListingBundle\\Tests\\": "tests/"
40
-        }
41
-    },
42
-    "config": {
43
-        "allow-plugins": {
44
-            "bamarni/composer-bin-plugin": true,
45
-            "contao-components/installer": true,
46
-            "contao/manager-plugin": true
47
-        }
48
-    },
49
-    "extra": {
50
-        "bamarni-bin": {
51
-            "bin-links": false,
52
-            "target-directory": "tools"
53
-        },
54
-        "contao-manager-plugin": "vonRotenberg\\RealEstateListingBundle\\ContaoManager\\Plugin"
2
+  "name": "vonrotenberg/contao-real_estate_listing-bundle",
3
+  "description": "Contao bundle for real estate listings",
4
+  "license": "commercial",
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": "^8.1",
18
+    "contao/core-bundle": "^5.3",
19
+    "symfony/config": "^6.4",
20
+    "symfony/dependency-injection": "^6.4",
21
+    "symfony/http-kernel": "^6.4",
22
+    "vonrotenberg/htmx-bundle": "^1.0"
23
+  },
24
+  "require-dev": {
25
+    "bamarni/composer-bin-plugin": "^1.5",
26
+    "contao/manager-plugin": "^2.0",
27
+    "phpunit/phpunit": "^9.5",
28
+    "symfony/phpunit-bridge": "^6.1"
29
+  },
30
+  "conflict": {
31
+    "contao/manager-plugin": "<2.0 || >=3.0"
32
+  },
33
+  "autoload": {
34
+    "psr-4": {
35
+      "vonRotenberg\\RealEstateListingBundle\\": "src/"
36
+    }
37
+  },
38
+  "autoload-dev": {
39
+    "psr-4": {
40
+      "vonRotenberg\\RealEstateListingBundle\\Tests\\": "tests/"
41
+    }
42
+  },
43
+  "config": {
44
+    "allow-plugins": {
45
+      "bamarni/composer-bin-plugin": true,
46
+      "contao-components/installer": true,
47
+      "contao/manager-plugin": true
48
+    }
49
+  },
50
+  "extra": {
51
+    "bamarni-bin": {
52
+      "bin-links": false,
53
+      "target-directory": "tools"
55 54
     },
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"
55
+    "contao-manager-plugin": "vonRotenberg\\RealEstateListingBundle\\ContaoManager\\Plugin"
56
+  },
57
+  "scripts": {
58
+    "all": [
59
+      "@unit-tests",
60
+      "@ecs",
61
+      "@phpstan"
62
+    ],
63
+    "ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi",
64
+    "phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
65
+    "unit-tests": "@php vendor/bin/phpunit --colors=always"
66
+  },
67
+  "repositories": {
68
+    "vonrotenberg": {
69
+      "type": "composer",
70
+      "url": "https://satis.esales-media.de"
65 71
     }
72
+  }
66 73
 }
Browse code

Initial commit

Benjamin Roth authored on26/02/2024 17:53:24
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,66 @@
1
+{
2
+    "name": "vonrotenberg/contao-real_estate_listing-bundle",
3
+    "description": "Contao bundle for real estate listings",
4
+    "license": "commercial",
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": "^8.1",
18
+        "contao/core-bundle": "^5.3",
19
+        "symfony/config": "^6.4",
20
+        "symfony/dependency-injection": "^6.4",
21
+        "symfony/http-kernel": "^6.4"
22
+    },
23
+    "require-dev": {
24
+        "bamarni/composer-bin-plugin": "^1.5",
25
+        "contao/manager-plugin": "^2.0",
26
+        "phpunit/phpunit": "^9.5",
27
+        "symfony/phpunit-bridge": "^6.1"
28
+    },
29
+    "conflict": {
30
+        "contao/manager-plugin": "<2.0 || >=3.0"
31
+    },
32
+    "autoload": {
33
+        "psr-4": {
34
+            "vonRotenberg\\RealEstateListingBundle\\": "src/"
35
+        }
36
+    },
37
+    "autoload-dev": {
38
+        "psr-4": {
39
+            "vonRotenberg\\RealEstateListingBundle\\Tests\\": "tests/"
40
+        }
41
+    },
42
+    "config": {
43
+        "allow-plugins": {
44
+            "bamarni/composer-bin-plugin": true,
45
+            "contao-components/installer": true,
46
+            "contao/manager-plugin": true
47
+        }
48
+    },
49
+    "extra": {
50
+        "bamarni-bin": {
51
+            "bin-links": false,
52
+            "target-directory": "tools"
53
+        },
54
+        "contao-manager-plugin": "vonRotenberg\\RealEstateListingBundle\\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
+}