diff --git a/build.sh b/build.sh index 3c50662..085013e 100755 --- a/build.sh +++ b/build.sh @@ -18,6 +18,6 @@ docker run --rm \ composer/satis:latest \ build --ansi -vv satis.json dist -cp tfs-theme/favicon.ico dist/ +cp talis-theme/favicon.ico dist/ echo "Done! Open dist/index.html to see the result" diff --git a/satis.json b/satis.json index 83db8a3..f5a6ca4 100644 --- a/satis.json +++ b/satis.json @@ -1,6 +1,6 @@ { "name": "techfromsage/composer", - "description": "TfS Composer repository", + "description": "Talis Composer repository", "homepage": "https://composer.talis.io/", "repositories": [ { @@ -67,5 +67,5 @@ "require-all": true, "require-dependencies": true, "require-dev-dependencies": false, - "twig-template": "tfs-theme/index.html.twig" + "twig-template": "talis-theme/index.html.twig" } diff --git a/tfs-theme/build/app.js b/talis-theme/build/app.js similarity index 100% rename from tfs-theme/build/app.js rename to talis-theme/build/app.js diff --git a/tfs-theme/build/entrypoints.json b/talis-theme/build/entrypoints.json similarity index 100% rename from tfs-theme/build/entrypoints.json rename to talis-theme/build/entrypoints.json diff --git a/tfs-theme/build/manifest.json b/talis-theme/build/manifest.json similarity index 100% rename from tfs-theme/build/manifest.json rename to talis-theme/build/manifest.json diff --git a/tfs-theme/build/style.css b/talis-theme/build/style.css similarity index 100% rename from tfs-theme/build/style.css rename to talis-theme/build/style.css diff --git a/talis-theme/favicon.ico b/talis-theme/favicon.ico new file mode 100644 index 0000000..e3f8aea Binary files /dev/null and b/talis-theme/favicon.ico differ diff --git a/talis-theme/index.html.twig b/talis-theme/index.html.twig new file mode 100644 index 0000000..9654420 --- /dev/null +++ b/talis-theme/index.html.twig @@ -0,0 +1,108 @@ + + + + + + + + + {{ name|default('Composer repository') }} + + + + + + +
+
+
+ +

+ {{ name|default('Composer repository') }} + +

+
+ + Last updated:
+
+ + + +
+ + {% if description %} +

{{ description|raw }}

+ {% endif %} +
+ +
+
+ + +
+
+ +
+

+ This is a private Composer repository. + To use it, you have to add this repository to your composer.json file. +

+ +
+
+
Setting up this repository in your projects
+

+ Add this Composer + repository to your project's composer.json + file, then you can require these private packages just like you would with + one from Packagist. +

+
{
+    "repositories": [
+        {
+            "type": "composer",
+            "url": "{{ url }}"
+        }
+    ]
+}
+

Read more on how to handle composer private packages.

+
+
+
+ +
+ {% for name, package in packages %}{% include 'package.html.twig' %}{% endfor %} +
+ +
+

This Composer repository is powered by Satis {{ constant('Composer\\Satis\\Satis::VERSION') }}

+
+
+ + + + + + + + + diff --git a/tfs-theme/package.html.twig b/talis-theme/package.html.twig similarity index 98% rename from tfs-theme/package.html.twig rename to talis-theme/package.html.twig index be42c7f..8510a9d 100644 --- a/tfs-theme/package.html.twig +++ b/talis-theme/package.html.twig @@ -16,7 +16,7 @@ Abandoned! Package is abandoned, you should avoid using it. {% if package.replacement %} - Use {{ package.replacement }} instead. + Use {{ package.replacement }} instead. {% else %} No replacement was suggested. {% endif %} diff --git a/tfs-theme/favicon.ico b/tfs-theme/favicon.ico deleted file mode 100644 index 4a20252..0000000 Binary files a/tfs-theme/favicon.ico and /dev/null differ diff --git a/tfs-theme/index.html.twig b/tfs-theme/index.html.twig deleted file mode 100644 index 31c162c..0000000 --- a/tfs-theme/index.html.twig +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - {{ name|default('Composer repository') }} - - - - - -
-
-
- -

- {{ name|default('Composer repository') }} - -

-
- - Last updated:
-
- - - -
- - {% if description %} -

{{ description|raw }}

- {% endif %} -
- -
-
- - -
-
- -
-

- This is a private Composer repository. - To use it, you have to add this repository to your composer.json file. -

- -
-
-
Setting up this repository in your projects
-

- Add this Composer - repository to your project's composer.json - file, then you can require these private packages just like you would with - one from Packagist. -

-
{
-    "repositories": [
-        {
-            "type": "composer",
-            "url": "{{ url }}"
-        }
-    ]
-}
-

Read more on how to handle composer private packages.

-
-
-
- -
- {% for name, package in packages %}{% include 'package.html.twig' %}{% endfor %} -
- -
-

This Composer repository is powered by Satis {{ constant('Composer\\Satis\\Satis::VERSION') }}

-
-
- - - - - - - - -