|
| 1 | +<script type="application/ld+json"> |
| 2 | +{ |
| 3 | + "@context": "https://schema.org", |
| 4 | + "@graph": [ |
| 5 | + { |
| 6 | + "@type": "WebSite", |
| 7 | + "@id": "{{ absolute_url('/') }}#website", |
| 8 | + "url": "{{ absolute_url('/') }}", |
| 9 | + "name": "Dotkernel", |
| 10 | + "description": "Dotkernel is a collection of open-source application skeletons built on Mezzio and Laminas - pre-configured and ready for anything from a presentation site to an enterprise-grade API.", |
| 11 | + "publisher": { "@id": "{{ absolute_url('/') }}#organization" } |
| 12 | + }, |
| 13 | + { |
| 14 | + "@type": "Organization", |
| 15 | + "@id": "{{ absolute_url('/') }}#organization", |
| 16 | + "name": "Dotkernel", |
| 17 | + "url": "{{ absolute_url('/') }}", |
| 18 | + "logo": "{{ absolute_url(asset('images/app/dotkernel-logo.png')) }}", |
| 19 | + "sameAs": [ |
| 20 | + "https://github.com/dotkernel", |
| 21 | + "https://www.dotkernel.com" |
| 22 | + ], |
| 23 | + "parentOrganization": { |
| 24 | + "@type": "Organization", |
| 25 | + "name": "Apidemia", |
| 26 | + "url": "https://www.apidemia.com" |
| 27 | + } |
| 28 | + }, |
| 29 | + { |
| 30 | + "@type": "SoftwareApplication", |
| 31 | + "name": "Dotkernel API", |
| 32 | + "applicationCategory": "DeveloperApplication", |
| 33 | + "operatingSystem": "Cross-platform", |
| 34 | + "description": "A framework-less, opinionated toolkit for intermediate-to-advanced developers who want to ship REST APIs quickly and efficiently. An alternative to legacy Laminas API Tools (Apigility).", |
| 35 | + "url": "https://github.com/dotkernel/api", |
| 36 | + "license": "https://opensource.org/licenses/BSD-3-Clause", |
| 37 | + "offers": { |
| 38 | + "@type": "Offer", |
| 39 | + "price": "0", |
| 40 | + "priceCurrency": "USD" |
| 41 | + } |
| 42 | + }, |
| 43 | + { |
| 44 | + "@type": "SoftwareApplication", |
| 45 | + "name": "Dotkernel Admin", |
| 46 | + "applicationCategory": "DeveloperApplication", |
| 47 | + "operatingSystem": "Cross-platform", |
| 48 | + "description": "A ready-to-go admin skeleton for managing your platform's records with a simple, table-based approach - plus the tools to build reports and dashboards.", |
| 49 | + "url": "https://github.com/dotkernel/admin", |
| 50 | + "license": "https://opensource.org/licenses/BSD-3-Clause", |
| 51 | + "offers": { |
| 52 | + "@type": "Offer", |
| 53 | + "price": "0", |
| 54 | + "priceCurrency": "USD" |
| 55 | + } |
| 56 | + }, |
| 57 | + { |
| 58 | + "@type": "SoftwareApplication", |
| 59 | + "name": "Dotkernel Queue", |
| 60 | + "applicationCategory": "DeveloperApplication", |
| 61 | + "operatingSystem": "Cross-platform", |
| 62 | + "description": "Asynchronous task queuing built on Symfony Messenger, wired into the Laminas Service Manager container via netglue/laminas-messenger.", |
| 63 | + "url": "https://github.com/dotkernel/queue", |
| 64 | + "license": "https://opensource.org/licenses/BSD-3-Clause", |
| 65 | + "offers": { |
| 66 | + "@type": "Offer", |
| 67 | + "price": "0", |
| 68 | + "priceCurrency": "USD" |
| 69 | + } |
| 70 | + }, |
| 71 | + { |
| 72 | + "@type": "SoftwareApplication", |
| 73 | + "name": "Dotkernel Light", |
| 74 | + "applicationCategory": "DeveloperApplication", |
| 75 | + "operatingSystem": "Cross-platform", |
| 76 | + "description": "A minimal, PSR-15 compliant skeleton built for learning purposes - a simple, didactic example of how to put together a basic website.", |
| 77 | + "url": "https://github.com/dotkernel/light", |
| 78 | + "license": "https://opensource.org/licenses/BSD-3-Clause", |
| 79 | + "offers": { |
| 80 | + "@type": "Offer", |
| 81 | + "price": "0", |
| 82 | + "priceCurrency": "USD" |
| 83 | + } |
| 84 | + }, |
| 85 | + { |
| 86 | + "@type": "SoftwareApplication", |
| 87 | + "name": "Dotkernel Frontend", |
| 88 | + "applicationCategory": "DeveloperApplication", |
| 89 | + "operatingSystem": "Cross-platform", |
| 90 | + "description": "A web starter skeleton for building frontend applications on Mezzio and Laminas - a standalone alternative, separate from the Headless Platform.", |
| 91 | + "url": "https://github.com/dotkernel/frontend", |
| 92 | + "license": "https://opensource.org/licenses/BSD-3-Clause", |
| 93 | + "offers": { |
| 94 | + "@type": "Offer", |
| 95 | + "price": "0", |
| 96 | + "priceCurrency": "USD" |
| 97 | + } |
| 98 | + } |
| 99 | + ] |
| 100 | +} |
| 101 | +</script> |
0 commit comments