Browse code

Initial commit

Benjamin Roth authored on22/05/2020 13:02:03
Showing5 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,10 @@
1
+# Composer
2
+/composer.lock
3
+/composer.phar
4
+/vendor/
5
+
6
+# PhpUnit
7
+/phpunit.xml
8
+
9
+# IDE
10
+/.idea/
0 11
new file mode 100644
... ...
@@ -0,0 +1,13 @@
1
+Scrollanimation Contao meta package
2
+====
3
+
4
+Metapackage that provides the [Contao][1] components anime.js and ScrollMagic plus JavaScript templates for easy usage.This package is provided and maintained by [vonRotenberg][2].
5
+
6
+License
7
+----
8
+LGPL-3.0+
9
+
10
+
11
+
12
+[1]: https://contao.org
13
+[2]: https://www.vonrotenberg.de
0 14
\ No newline at end of file
1 15
new file mode 100644
... ...
@@ -0,0 +1,26 @@
1
+{
2
+  "name":"vonRotenberg/contao-scrollanimation",
3
+  "description":"Provides contao components scrollmagic and anime.js",
4
+  "keywords":["contao", "metapackage", "animation", "scrolling", "animejs", "scrollmagic"],
5
+  "type":"contao-bundle",
6
+  "license":"LGPL-3.0+",
7
+  "authors":[
8
+    {
9
+      "name": "Benjamin Roth",
10
+      "homepage": "https://www.vonrotenberg.de"
11
+    }
12
+  ],
13
+  "require":{
14
+    "php": "^7.0",
15
+    "contao/core-bundle": "^4.4"
16
+  },
17
+  "conflict": {
18
+    "contao/core": "*",
19
+    "contao/manager-plugin": "<2.0 || >=3.0"
20
+  },
21
+  "autoload":{
22
+    "psr-4": {
23
+      "vonRotenberg\\ScrollanimationBundle\\": "src/"
24
+    }
25
+  }
26
+}
0 27
\ No newline at end of file
1 28
new file mode 100644
... ...
@@ -0,0 +1,3 @@
1
+
2
+<script src="<?= $this->asset('js/anime.min.js', 'vonrotenberg/contao-component-animejs') ?>"></script>
3
+<script src="<?= $this->asset('js/ScrollMagic.min.js', 'vonrotenberg/contao-component-scrollmagic') ?>"></script>
0 4
\ No newline at end of file
1 5
new file mode 100644
... ...
@@ -0,0 +1,20 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
+
5
+/*
6
+ * Root Protection Bundle for Contao Open Source CMS.
7
+ *
8
+ * @copyright  Copyright (c) 2020, terminal42 gmbh
9
+ * @author     terminal42 <https://terminal42.ch>
10
+ * @license    MIT
11
+ * @link       http://github.com/terminal42/contao-root-protection
12
+ */
13
+
14
+namespace vonRotenberg\ScrollanimationBundle;
15
+
16
+use Symfony\Component\HttpKernel\Bundle\Bundle;
17
+
18
+final class vonRotenbergScrollanimationBundle extends Bundle
19
+{
20
+}
0 21
\ No newline at end of file