Skip to content

Commit 68d1b0e

Browse files
authored
Merge branch 'main' into create-pr-action/update-collections-0
2 parents 2a6216b + d0bcbe8 commit 68d1b0e

File tree

5 files changed

+50
-5
lines changed

5 files changed

+50
-5
lines changed

feed.json.liquid

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ permalink: feed.json
3232
],
3333
"topics": [
3434
{% for topic in topics %}
35+
{% assign related = topic.related | split: ', ' %}
36+
{% assign aliases = topic.aliases | split: ', ' %}
3537
{
3638
"topic_name": {{ topic.topic | jsonify }},
3739
"created_by": {{ topic.created_by | jsonify }},
@@ -47,12 +49,12 @@ permalink: feed.json
4749
"url": "{{ site.url }}{{ topic.url | remove_first: "/index.html" }}",
4850
"wikipedia_url": {{ topic.wikipedia_url | jsonify }},
4951
"related": [
50-
{% for related_topic in topic.related %}
52+
{% for related_topic in related %}
5153
"{{ related_topic }}"{% unless forloop.last == true %},{% endunless %}
5254
{% endfor %}
5355
],
5456
"aliases": [
55-
{% for alias in topic.aliases %}
57+
{% for alias in aliases %}
5658
"{{ alias }}"{% unless forloop.last == true %},{% endunless %}
5759
{% endfor %}
5860
],
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
aliases: iac
3+
display_name: Infrastructure as code
4+
short_description: Infrastructure as code is a way to manage environment packages as code instead of manual installation and mantainance.
5+
related: cloud-computing, devops, containerization, as-code, everything-as-code, container-orchestration, infrastructure-as-a-service, provisioning, infrastructure-drift
6+
topic: infrastructure-as-code
7+
wikipedia_url: https://en.wikipedia.org/wiki/Infrastructure_as_code
8+
---
9+
Nowadays, developers strive to have as identical environments for production, staging and development as possible to rule out any infrastructure interferance. Therefore, instead of installing and maintaining packages manually, **infrastructure** is defined and managed **as code**. Container orchestration solutions and version control systems help keeping all environments in sync and changes transparent.

topics/json-schema/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
created_by: Kris Zyp, Francis Galiegue, Gary Court, Austin Wright, Henry Andrews, Ben Hutton, and Greg Dennis
3+
aliases: jsonschema
4+
display_name: JSON Schema
5+
logo: json-schema.png
6+
released: '2009'
7+
short_description: JSON Schema is a vocabulary that allows you to validate, annotate, and manipulate JSON
8+
documents.
9+
topic: json-schema
10+
url: https://json-schema.org/
11+
related: json
12+
---
13+
While JSON is probably the most popular format for exchanging data, **JSON Schema** is the vocabulary that enables JSON data consistency, validity, and interoperability at scale.

topics/json-schema/json-schema.png

18.4 KB
Loading

topics/laravel/index.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,35 @@
11
---
2-
aliases: laravel4, laravel5, laravel54, laravel55, laravel-framework, laravel6
2+
aliases: laravel4, laravel5, laravel54, laravel55, laravel-framework, laravel6, laravel7, laravel8, laravel9, laravel10
33
created_by: Taylor Otwell
44
display_name: Laravel
55
github_url: https://github.com/laravel
66
logo: laravel.png
7-
related: framework, php
7+
related: framework, php, symfony, eloquent, mvc, syntactic-sugar, codeigniter, blade-template, php-artisan, october-cms
88
released: June 2011
99
short_description: The PHP Framework for Web Artisans.
1010
topic: laravel
1111
url: https://laravel.com/
1212
wikipedia_url: https://en.wikipedia.org/wiki/Laravel
1313
---
14-
Laravel is a popular PHP framework, used for the development of MVC web applications.
14+
**Laravel** is a popular PHP framework, used for the development of MVC web applications, based on [Symfony](https://github.com/topics/symfony) and created as an attempt to provide a more advanced alternative to [CodeIgniter](https://github.com/topics/codeigniter).
15+
16+
# [Versions](https://laravel.com/docs/10.x/releases#versioning-scheme)
17+
[**v4**](https://github.com/topics/laravel4) ([v4.2](https://github.com/topics/laravel42)) • [**v5**](https://github.com/topics/laravel5) ([v5.1](https://github.com/topics/laravel51) • [v5.2](https://github.com/topics/laravel52) • [v5.3](https://github.com/topics/laravel53) • [v5.4](https://github.com/topics/laravel54) • [v5.5](https://github.com/topics/laravel55) • [v5.6](https://github.com/topics/laravel56) • [v5.7](https://github.com/topics/laravel57) • [v5.8](https://github.com/topics/laravel58)) • [**v6**](https://github.com/topics/laravel6) • [**v7**](https://github.com/topics/laravel7) • [**v8**](https://github.com/topics/laravel8) • [**v9**](https://github.com/topics/laravel9) • [**v10**](https://github.com/topics/laravel10)
18+
19+
# Packages
20+
* [Valet](https://github.com/topics/valet)
21+
* [Homestead](https://github.com/topics/homestead)
22+
* [Cashier](https://github.com/topics/laravel-cashier)
23+
* [Socialite](https://github.com/topics/laravel-socialite)
24+
* [Passport](https://github.com/topics/laravel-passport)
25+
* [Scout](https://github.com/topics/laravel-scout)
26+
* [Dusk](https://github.com/topics/laravel-dusk)
27+
* [Horizon](https://github.com/topics/laravel-horizon)
28+
* [Telescope](https://github.com/topics/laravel-telescope)
29+
* [Sanctum](https://github.com/topics/laravel-sanctum)
30+
* [Jetstream](https://github.com/topics/laravel-jetstream)
31+
* [Sail](https://github.com/topics/laravel-sail)
32+
* [Echo](https://github.com/topics/laravel-echo)
33+
* [Inertia](https://github.com/topics/inertiajs)
34+
* [Livewire](https://github.com/topics/livewire)
35+
* [Nova](https://github.com/topics/laravel-nova)

0 commit comments

Comments
 (0)