|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace App; |
| 4 | + |
| 5 | +class Ecosystem |
| 6 | +{ |
| 7 | + /** |
| 8 | + * Get the ecosystem items. |
| 9 | + * |
| 10 | + * @return array |
| 11 | + */ |
| 12 | + public static function items(): array |
| 13 | + { |
| 14 | + return [ |
| 15 | + 'breeze' => [ |
| 16 | + 'name' => 'Breeze', |
| 17 | + 'image-alt' => 'Laravel Breeze Logo Logo', |
| 18 | + 'description' => 'Lightweight starter kit scaffolding for new applications with Blade or Inertia.', |
| 19 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/starter-kits#laravel-breeze', |
| 20 | + 'color' => '#F3C14B', |
| 21 | + ], |
| 22 | + 'cashier' => [ |
| 23 | + 'name' => 'Cashier', |
| 24 | + 'image-alt' => 'Laravel Cashier Logo', |
| 25 | + 'description' => 'Take the pain out of managing subscriptions on Stripe or Paddle.', |
| 26 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/billing', |
| 27 | + 'color' => '#91D630' |
| 28 | + ], |
| 29 | + 'dusk' => [ |
| 30 | + 'name' => 'Dusk', |
| 31 | + 'image-alt' => 'Laravel Dusk Logo', |
| 32 | + 'description' => 'Automated browser testing to ship your application with confidence.', |
| 33 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/dusk', |
| 34 | + 'color' => '#BB358B' |
| 35 | + ], |
| 36 | + 'echo' => [ |
| 37 | + 'name' => 'Echo', |
| 38 | + 'image-alt' => 'Laravel Echo Logo', |
| 39 | + 'description' => 'Listen for WebSocket events broadcast by your Laravel application.', |
| 40 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/broadcasting', |
| 41 | + 'color' => '#4AB2B0' |
| 42 | + ], |
| 43 | + 'envoyer' => [ |
| 44 | + 'name' => 'Envoyer', |
| 45 | + 'image-alt' => 'Envoyer Logo', |
| 46 | + 'description' => 'Deploy your Laravel applications to customers with zero downtime.', |
| 47 | + 'href' => 'https://envoyer.io', |
| 48 | + 'color' => '#F56857' |
| 49 | + ], |
| 50 | + 'forge' => [ |
| 51 | + 'name' => 'Forge', |
| 52 | + 'image-alt' => 'Forge Logo', |
| 53 | + 'description' => 'Server management doesn\'t have to be a nightmare.', |
| 54 | + 'href' => 'https://forge.laravel.com', |
| 55 | + 'color' => '#1EB786' |
| 56 | + ], |
| 57 | + 'herd' => [ |
| 58 | + 'name' => 'Herd', |
| 59 | + 'image-alt' => 'Herd Logo', |
| 60 | + 'description' => 'The fastest Laravel local development experience - exclusively for macOS.', |
| 61 | + 'href' => 'https://herd.laravel.com', |
| 62 | + 'color' => '#dc2626' |
| 63 | + ], |
| 64 | + 'horizon' => [ |
| 65 | + 'name' => 'Horizon', |
| 66 | + 'image-alt' => 'Laravel Horizon Logo', |
| 67 | + 'description' => 'Beautiful UI for monitoring your Redis driven Laravel queues.', |
| 68 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/horizon', |
| 69 | + 'color' => '#8C6ED3' |
| 70 | + ], |
| 71 | + 'inertia' => [ |
| 72 | + 'name' => 'Inertia', |
| 73 | + 'image-alt' => 'Inertia Logo', |
| 74 | + 'description' => 'Create modern single-page React and Vue apps using classic server-side routing.', |
| 75 | + 'href' => 'https://inertiajs.com', |
| 76 | + 'color' => '#9553e9' |
| 77 | + ], |
| 78 | + 'jetstream' => [ |
| 79 | + 'name' => 'Jetstream', |
| 80 | + 'image-alt' => 'Laravel Jetstream Logo', |
| 81 | + 'description' => 'Robust starter kit including authentication and team management.', |
| 82 | + 'href' => 'https://jetstream.laravel.com', |
| 83 | + 'color' => '#6875f5' |
| 84 | + ], |
| 85 | + 'livewire' => [ |
| 86 | + 'name' => 'Livewire', |
| 87 | + 'image-alt' => 'Laravel Livewire Logo', |
| 88 | + 'description' => 'Build reactive, dynamic applications using Laravel and Blade.', |
| 89 | + 'href' => 'https://livewire.laravel.com', |
| 90 | + 'color' => '#fb70a9' |
| 91 | + ], |
| 92 | + 'nova' => [ |
| 93 | + 'name' => 'Nova', |
| 94 | + 'image-alt' => 'Laravel Nova Logo', |
| 95 | + 'description' => 'Thoughtfully designed administration panel for your Laravel applications.', |
| 96 | + 'href' => 'https://nova.laravel.com', |
| 97 | + 'color' => '#4099DE' |
| 98 | + ], |
| 99 | + 'octane' => [ |
| 100 | + 'name' => 'Octane', |
| 101 | + 'image-alt' => 'Laravel Octane Logo', |
| 102 | + 'description' => 'Supercharge your application\'s performance by keeping it in memory.', |
| 103 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/octane', |
| 104 | + 'color' => '#CA3A31' |
| 105 | + ], |
| 106 | + 'pennant' => [ |
| 107 | + 'name' => 'Pennant', |
| 108 | + 'image-alt' => 'Laravel Pennant Logo', |
| 109 | + 'description' => 'A simple, lightweight library for managing feature flags.', |
| 110 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/pennant', |
| 111 | + 'color' => '#1aa44a' |
| 112 | + ], |
| 113 | + 'pint' => [ |
| 114 | + 'name' => 'Pint', |
| 115 | + 'image-alt' => 'Laravel Pint Logo', |
| 116 | + 'description' => 'Opinionated PHP code style fixer for minimalists.', |
| 117 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/pint', |
| 118 | + 'color' => '#ffd000' |
| 119 | + ], |
| 120 | + 'prompts' => [ |
| 121 | + 'name' => 'Prompts', |
| 122 | + 'image-alt' => 'Laravel Prompts Logo', |
| 123 | + 'description' => 'Beautiful and user-friendly forms for command-line applications.', |
| 124 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/prompts', |
| 125 | + 'color' => '#4ade80' |
| 126 | + ], |
| 127 | + 'sail' => [ |
| 128 | + 'name' => 'Sail', |
| 129 | + 'image-alt' => 'Laravel Sail Logo', |
| 130 | + 'description' => 'Hand-crafted Laravel local development experience using Docker.', |
| 131 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/sail', |
| 132 | + 'color' => '#38BDF7' |
| 133 | + ], |
| 134 | + 'sanctum' => [ |
| 135 | + 'name' => 'Sanctum', |
| 136 | + 'image-alt' => 'Laravel Sanctum Logo', |
| 137 | + 'description' => 'API and mobile application authentication without wanting to pull your hair out.', |
| 138 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/sanctum', |
| 139 | + 'color' => '#1D5873' |
| 140 | + ], |
| 141 | + 'scout' => [ |
| 142 | + 'name' => 'Scout', |
| 143 | + 'image-alt' => 'Laravel Scout Logo', |
| 144 | + 'description' => 'Lightning fast full-text search for your application\'s Eloquent models.', |
| 145 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/scout', |
| 146 | + 'color' => '#F55D5C' |
| 147 | + ], |
| 148 | + 'socialite' => [ |
| 149 | + 'name' => 'Socialite', |
| 150 | + 'image-alt' => 'Laravel Socialite Logo', |
| 151 | + 'description' => 'Social authentication via Facebook, Twitter, GitHub, LinkedIn, and more.', |
| 152 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/socialite', |
| 153 | + 'color' => '#E394BA' |
| 154 | + ], |
| 155 | + 'spark' => [ |
| 156 | + 'name' => 'Spark', |
| 157 | + 'image-alt' => 'Laravel Spark Logo', |
| 158 | + 'description' => 'Launch your next business with our fully-featured, drop-in billing portal.', |
| 159 | + 'href' => 'https://spark.laravel.com', |
| 160 | + 'color' => '#9B8BFB' |
| 161 | + ], |
| 162 | + 'telescope' => [ |
| 163 | + 'name' => 'Telescope', |
| 164 | + 'image-alt' => 'Laravel Telescope Logo', |
| 165 | + 'description' => 'Debug your application using our debugging and insight UI.', |
| 166 | + 'href' => '/docs/' . Docs::DEFAULT_VERSION . '/telescope', |
| 167 | + 'color' => '#4040C8' |
| 168 | + ], |
| 169 | + 'vapor' => [ |
| 170 | + 'name' => 'Vapor', |
| 171 | + 'image-alt' => 'Laravel Vapor Logo', |
| 172 | + 'description' => 'Laravel Vapor is a serverless deployment platform for Laravel, powered by AWS.', |
| 173 | + 'href' => 'https://vapor.laravel.com', |
| 174 | + 'color' => '#25c4f2' |
| 175 | + ] |
| 176 | + ]; |
| 177 | + } |
| 178 | +} |
0 commit comments