PHP Classes

File: src/database/data/programming_languages.php

Recommend this page to a friend!
  Classes of Angel Campos   Atlas catalog   src/database/data/programming_languages.php   Download  
File: src/database/data/programming_languages.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Atlas catalog
API to provide details of APIs of an organization
Author: By
Last change:
Date: 1 month ago
Size: 1,934 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

/**
 * A list of common programming languages for web and microservices development.
 */
return [
    [
       
'name' => 'PHP',
       
'icon' => 'php.svg',
       
'is_enabled' => true,
       
'url' => 'https://www.php.net',
    ],
    [
       
'name' => 'JavaScript',
       
'icon' => 'javascript.svg',
       
'is_enabled' => true,
       
'url' => 'https://developer.mozilla.org/en-US/docs/Web/JavaScript',
    ],
    [
       
'name' => 'TypeScript',
       
'icon' => 'typescript.svg',
       
'is_enabled' => true,
       
'url' => 'https://www.typescriptlang.org',
    ],
    [
       
'name' => 'Python',
       
'icon' => 'python.svg',
       
'is_enabled' => true,
       
'url' => 'https://www.python.org',
    ],
    [
       
'name' => 'Java',
       
'icon' => 'java.svg',
       
'is_enabled' => true,
       
'url' => 'https://www.java.com',
    ],
    [
       
'name' => 'Go',
       
'icon' => 'go.svg',
       
'is_enabled' => true,
       
'url' => 'https://go.dev',
    ],
    [
       
'name' => 'Ruby',
       
'icon' => 'ruby.svg',
       
'is_enabled' => true,
       
'url' => 'https://www.ruby-lang.org',
    ],
    [
       
'name' => 'C#',
       
'icon' => 'csharp.svg',
       
'is_enabled' => true,
       
'url' => 'https://docs.microsoft.com/en-us/dotnet/csharp/',
    ],
    [
       
'name' => 'Rust',
       
'icon' => 'rust.svg',
       
'is_enabled' => true,
       
'url' => 'https://www.rust-lang.org',
    ],
    [
       
'name' => 'Kotlin',
       
'icon' => 'kotlin.svg',
       
'is_enabled' => true,
       
'url' => 'https://kotlinlang.org',
    ],
    [
       
'name' => 'Scala',
       
'icon' => 'scala.svg',
       
'is_enabled' => true,
       
'url' => 'https://www.scala-lang.org',
    ],
    [
       
'name' => 'Elixir',
       
'icon' => 'elixir.svg',
       
'is_enabled' => true,
       
'url' => 'https://elixir-lang.org',
    ],
];