diff --git a/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Informations.tsx b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Informations.tsx new file mode 100644 index 00000000..0fc3e752 --- /dev/null +++ b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Informations.tsx @@ -0,0 +1,56 @@ +"use client"; +import { useContext } from "react"; +import { LanguageContext } from "contexts/con/LanguageContext"; +import SectionTitle from "components/con/common/typography/SectionTitle"; +import Button from "components/con/common/Button"; +import SectionSubTitle from "components/con/common/typography/SectionSubtitle"; + +const Arrow = () => ( + + + +); + +export default function Informations() { + const { t } = useContext(LanguageContext); + return ( +
+
+ + {t("2026.cfp.title")} + + {t("2026.cfp.subtitle")} +
+ + {t("2026.cfp.informations")} + +
    + {[1, 2, 3, 4, 5, 6].map((index) => ( +
  • + +

    {t(`2026.cfp.point_${index}`)}

    +
  • + ))} +
+ +
+
+
+ ); +} diff --git a/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Package.tsx b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Package.tsx new file mode 100644 index 00000000..da9e861f --- /dev/null +++ b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Package.tsx @@ -0,0 +1,37 @@ +"use client"; +import { useContext } from "react"; +import { LanguageContext } from "contexts/con/LanguageContext"; +import SectionTitle from "components/con/common/typography/SectionTitle"; + +export default function Package() { + const { t } = useContext(LanguageContext); + return ( +
+ + {t("2026.cfp.package.title")} + +
+
+ +
+
+
+ {t("2026.cfp.package.subtitle")} +
+
    + {[1, 2, 3, 4, 5, 6].map((index) => ( +
  • + + {t(`2026.cfp.package.point_${index}`)} +
  • + ))} +
+
+
+
+ ); +} diff --git a/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Subject.tsx b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Subject.tsx new file mode 100644 index 00000000..9f63ab67 --- /dev/null +++ b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Subject.tsx @@ -0,0 +1,65 @@ +"use client"; +import { useContext } from "react"; +import { LanguageContext } from "contexts/con/LanguageContext"; +import SectionTitle from "components/con/common/typography/SectionTitle"; +import Button from "components/con/common/Button"; +import SectionSubTitle from "components/con/common/typography/SectionSubtitle"; + +export default function Informations() { + const { t, getLocaleDictionary } = useContext(LanguageContext); + const categories = getLocaleDictionary?.()[2026].cfp.subject.categories || []; + return ( +
+
+ + {t("2026.cfp.subject.title")} + + {t("2026.cfp.subject.subtitle")} +
+ {categories.map((c) => { + return ( +
+
+ +
+
+
+

+ {c.title} +

+
+ {c.points.map((p, i) => ( +
+ +

+

+ ))} +
+
+
+ ); + })} +
+ +
+
+ ); +} diff --git a/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Techno.tsx b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Techno.tsx new file mode 100644 index 00000000..d79ec892 --- /dev/null +++ b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/Techno.tsx @@ -0,0 +1,23 @@ +"use client"; +import { useContext } from "react"; +import { LanguageContext } from "contexts/con/LanguageContext"; +import SectionTitle from "components/con/common/typography/SectionTitle"; +import { Logos } from "./logos"; + +export default function Technos() { + const { t } = useContext(LanguageContext); + return ( +
+ + {t("2026.cfp.techno.title")} + +
+
+ + + +
+
+
+ ); +} diff --git a/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/logos.tsx b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/logos.tsx new file mode 100644 index 00000000..2892dd64 --- /dev/null +++ b/pwa/app/(con)/[locale]/con/2026/call-for-papers/components/logos.tsx @@ -0,0 +1,16 @@ +export function Logos() { + return ( + <> + + + + + + + + + + + + ); +} diff --git a/pwa/app/(con)/[locale]/con/2026/call-for-papers/page.tsx b/pwa/app/(con)/[locale]/con/2026/call-for-papers/page.tsx new file mode 100644 index 00000000..42d0293b --- /dev/null +++ b/pwa/app/(con)/[locale]/con/2026/call-for-papers/page.tsx @@ -0,0 +1,47 @@ +import { Locale, i18n } from "i18n/i18n-config"; +import { Metadata } from "next"; +import Package from "./components/Package"; +import Informations from "./components/Informations"; +import Subject from "./components/Subject"; +import Technos from "./components/Techno"; + +type Props = { + params: { locale: Locale }; +}; +export async function generateMetadata({ params }: Props): Promise { + const locale = params.locale || i18n.defaultLocale; + const dictionary = await import(`i18n/meta/${locale}.json`); + + return { + title: { + absolute: dictionary["call-for-papers"].title, + template: `%s - API Platform Conference 2026`, + }, + description: dictionary["call-for-papers"].description, + openGraph: { + title: `${dictionary["call-for-papers"].title} - API Platform Conference`, + description: dictionary["call-for-papers"].description, + }, + twitter: { + title: `${dictionary["call-for-papers"].title} - API Platform Conference`, + description: dictionary["call-for-papers"].description, + }, + alternates: { + languages: { + en: locale === "en" ? undefined : "/con/2026/call-for-papers", + fr: locale === "fr" ? undefined : "/fr/con/2026/call-for-papers", + }, + }, + }; +} + +export default async function Page({ params }: { params: { locale: Locale } }) { + return ( +
+ + + + +
+ ); +} diff --git a/pwa/app/(con)/[locale]/con/2026/components/HomePage.tsx b/pwa/app/(con)/[locale]/con/2026/components/HomePage.tsx index 710835a0..feb413de 100644 --- a/pwa/app/(con)/[locale]/con/2026/components/HomePage.tsx +++ b/pwa/app/(con)/[locale]/con/2026/components/HomePage.tsx @@ -5,13 +5,13 @@ import SectionTitle from "components/con/common/typography/SectionTitle"; import SectionSubTitle from "components/con/common/typography/SectionSubtitle"; import Venue from "components/con/home/Venue"; import Image from "next/image"; +import Wave from "components/con/common/Wave"; import Partners from "components/con/home/Partners"; import LookingSponsorCard from "components/con/home/LookingSponsorCard"; import { Partner, Speaker } from "types/con"; import { useContext } from "react"; import { LanguageContext } from "contexts/con/LanguageContext"; import Section from "components/con/home/Section"; -import Cover from "components/con/home/Cover"; import PictureGallery from "components/con/common/PictureGallery"; import AfterMovie from "../../2025/components/AfterMovie"; @@ -25,15 +25,34 @@ const HomePage = ({ speakers, partners, images }: HomePageProps) => { const { t, Translate, locale } = useContext(LanguageContext); return ( <> - - {t("review.button")} - - } - /> +
+
+
+ Logo API Platform Conference 2026 +
+
+

+ {t("2026.baseline")} +

+
+ +
+
+
+ +
{ edition: "2026", link: ( {t("2026.our_speakers.subtitle_link")} diff --git a/pwa/data/con/2026/footer.ts b/pwa/data/con/2026/footer.ts index 5f2d03d5..1aadd77d 100644 --- a/pwa/data/con/2026/footer.ts +++ b/pwa/data/con/2026/footer.ts @@ -15,6 +15,10 @@ const footer = [ { title: "footer.the_event.title", links: [ + { + title: "footer.the_event.links.cfp", + link: "/{{locale}}/con/2026/call-for-papers", + }, { title: "footer.the_event.links.venue", link: "/{{locale}}/con/2026/#venue", diff --git a/pwa/data/con/2026/nav.ts b/pwa/data/con/2026/nav.ts index 8b73117d..d7c681e5 100644 --- a/pwa/data/con/2026/nav.ts +++ b/pwa/data/con/2026/nav.ts @@ -7,8 +7,8 @@ const nav = { mobileOnly: true, }, { - to: "/{{locale}}/con/editions", - text: "nav.links.previous_editions", + to: "/{{locale}}/con/2025/call-for-papers", + text: "nav.links.call_for_papers", }, { to: "/{{locale}}/con/2025/review", diff --git a/pwa/data/contributors.json b/pwa/data/contributors.json index 0f266270..04208904 100644 --- a/pwa/data/contributors.json +++ b/pwa/data/contributors.json @@ -2,25 +2,25 @@ { "login": "dunglas", "repos": [ - { - "repo": "schema-generator", - "contributions": 240, - "url": "https://github.com/api-platform/schema-generator" - }, { "repo": "postman-collection-generator", "contributions": 3, "url": "https://github.com/api-platform/postman-collection-generator" }, { - "repo": "create-client", - "contributions": 130, - "url": "https://github.com/api-platform/create-client" + "repo": "schema-generator", + "contributions": 240, + "url": "https://github.com/api-platform/schema-generator" }, { - "repo": "api-doc-parser", - "contributions": 70, - "url": "https://github.com/api-platform/api-doc-parser" + "repo": "website", + "contributions": 243, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "api-platform", + "contributions": 473, + "url": "https://github.com/api-platform/api-platform" }, { "repo": "demo", @@ -28,54 +28,49 @@ "url": "https://github.com/api-platform/demo" }, { - "repo": "api-platform", - "contributions": 473, - "url": "https://github.com/api-platform/api-platform" + "repo": "api-doc-parser", + "contributions": 70, + "url": "https://github.com/api-platform/api-doc-parser" + }, + { + "repo": "create-client", + "contributions": 130, + "url": "https://github.com/api-platform/create-client" }, { "repo": "admin", "contributions": 164, "url": "https://github.com/api-platform/admin" }, - { - "repo": "website", - "contributions": 243, - "url": "https://github.com/api-platform/website" - }, { "repo": "api-pack", "contributions": 19, "url": "https://github.com/api-platform/api-pack" }, { - "repo": ".github", - "contributions": 10, - "url": "https://github.com/api-platform/.github" + "repo": "admin-pack", + "contributions": 2, + "url": "https://github.com/api-platform/admin-pack" }, { "repo": "api-platform-doc-parsing-check", "contributions": 3, "url": "https://github.com/api-platform/api-platform-doc-parsing-check" }, - { - "repo": "admin-pack", - "contributions": 2, - "url": "https://github.com/api-platform/admin-pack" - }, { "repo": "docker-compose-prod", "contributions": 4, "url": "https://github.com/api-platform/docker-compose-prod" }, { - "repo": "activity-pub", - "contributions": 1, - "url": "https://github.com/api-platform/activity-pub" + "repo": ".github", + "contributions": 10, + "url": "https://github.com/api-platform/.github" }, { - "repo": "admin-meta", + "repo": "activity-pub", "contributions": 1, - "url": "https://github.com/api-platform/admin-meta" + "url": "https://github.com/api-platform/activity-pub" }, { "repo": "openapi", @@ -83,15 +78,20 @@ "url": "https://github.com/api-platform/openapi" }, { - "repo": "http-cache", - "contributions": 12, - "url": "https://github.com/api-platform/http-cache" + "repo": "admin-meta", + "contributions": 1, + "url": "https://github.com/api-platform/admin-meta" }, { "repo": "json-schema", "contributions": 13, "url": "https://github.com/api-platform/json-schema" }, + { + "repo": "http-cache", + "contributions": 12, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "metadata", "contributions": 81, @@ -107,15 +107,20 @@ "contributions": 8, "url": "https://github.com/api-platform/elasticsearch" }, + { + "repo": "graphql", + "contributions": 59, + "url": "https://github.com/api-platform/graphql" + }, { "repo": "ramsey-uuid", "contributions": 4, "url": "https://github.com/api-platform/ramsey-uuid" }, { - "repo": "graphql", - "contributions": 59, - "url": "https://github.com/api-platform/graphql" + "repo": "documentation", + "contributions": 13, + "url": "https://github.com/api-platform/documentation" }, { "repo": "laravel", @@ -123,14 +128,9 @@ "url": "https://github.com/api-platform/laravel" }, { - "repo": "symfony", - "contributions": 21, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "documentation", - "contributions": 13, - "url": "https://github.com/api-platform/documentation" + "repo": "serializer", + "contributions": 87, + "url": "https://github.com/api-platform/serializer" }, { "repo": "vulcain", @@ -139,13 +139,13 @@ }, { "repo": "mercure", - "contributions": 736, + "contributions": 769, "url": "https://github.com/dunglas/mercure" }, { - "repo": "serializer", - "contributions": 87, - "url": "https://github.com/api-platform/serializer" + "repo": "symfony", + "contributions": 21, + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -159,10 +159,10 @@ } ], "rank": 1, - "contributions": 5295, + "contributions": 5328, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/57224?v=4", - "bio": "Founder of @coopTilleuls / Creator of @api-platform, Mercure.rocks, FrankenPHP and Vulcain.rocks / @symfony Core Team", + "bio": "Founder of @coopTilleuls, a dev co-op. Creator of FrankenPHP, @api-platform, Mercure.rocks, and numerous other free/open-source software. @symfony Core Team. ", "name": "Kévin Dunglas", "location": "Lille, France", "company": "@coopTilleuls ", @@ -177,14 +177,14 @@ "url": "https://github.com/api-platform/schema-generator" }, { - "repo": "create-client", - "contributions": 19, - "url": "https://github.com/api-platform/create-client" + "repo": "website", + "contributions": 89, + "url": "https://github.com/api-platform/website" }, { - "repo": "api-doc-parser", - "contributions": 32, - "url": "https://github.com/api-platform/api-doc-parser" + "repo": "api-platform", + "contributions": 59, + "url": "https://github.com/api-platform/api-platform" }, { "repo": "demo", @@ -192,19 +192,19 @@ "url": "https://github.com/api-platform/demo" }, { - "repo": "api-platform", - "contributions": 58, - "url": "https://github.com/api-platform/api-platform" + "repo": "api-doc-parser", + "contributions": 32, + "url": "https://github.com/api-platform/api-doc-parser" }, { - "repo": "admin", - "contributions": 38, - "url": "https://github.com/api-platform/admin" + "repo": "create-client", + "contributions": 19, + "url": "https://github.com/api-platform/create-client" }, { - "repo": "website", - "contributions": 86, - "url": "https://github.com/api-platform/website" + "repo": "admin", + "contributions": 39, + "url": "https://github.com/api-platform/admin" }, { "repo": "api-pack", @@ -221,16 +221,16 @@ "contributions": 53, "url": "https://github.com/api-platform/openapi" }, - { - "repo": "http-cache", - "contributions": 69, - "url": "https://github.com/api-platform/http-cache" - }, { "repo": "json-schema", "contributions": 32, "url": "https://github.com/api-platform/json-schema" }, + { + "repo": "http-cache", + "contributions": 76, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "metadata", "contributions": 139, @@ -243,33 +243,33 @@ }, { "repo": "elasticsearch", - "contributions": 118, + "contributions": 122, "url": "https://github.com/api-platform/elasticsearch" }, + { + "repo": "graphql", + "contributions": 218, + "url": "https://github.com/api-platform/graphql" + }, { "repo": "ramsey-uuid", - "contributions": 46, + "contributions": 49, "url": "https://github.com/api-platform/ramsey-uuid" }, { - "repo": "graphql", - "contributions": 212, - "url": "https://github.com/api-platform/graphql" + "repo": "documentation", + "contributions": 60, + "url": "https://github.com/api-platform/documentation" }, { "repo": "laravel", - "contributions": 158, + "contributions": 172, "url": "https://github.com/api-platform/laravel" }, { - "repo": "symfony", - "contributions": 454, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "documentation", - "contributions": 57, - "url": "https://github.com/api-platform/documentation" + "repo": "serializer", + "contributions": 249, + "url": "https://github.com/api-platform/serializer" }, { "repo": "vulcain", @@ -282,23 +282,23 @@ "url": "https://github.com/dunglas/mercure" }, { - "repo": "serializer", - "contributions": 236, - "url": "https://github.com/api-platform/serializer" + "repo": "symfony", + "contributions": 492, + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", - "contributions": 2117, + "contributions": 2229, "url": "https://github.com/api-platform/core" }, { "repo": "docs", - "contributions": 321, + "contributions": 340, "url": "https://github.com/api-platform/docs" } ], "rank": 2, - "contributions": 4309, + "contributions": 4533, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/1321971?v=4", "bio": "@api-platform @keymetrics", @@ -310,20 +310,25 @@ { "login": "vincentchalamon", "repos": [ + { + "repo": "postman-collection-generator", + "contributions": 30, + "url": "https://github.com/api-platform/postman-collection-generator" + }, { "repo": "schema-generator", "contributions": 9, "url": "https://github.com/api-platform/schema-generator" }, { - "repo": "postman-collection-generator", - "contributions": 30, - "url": "https://github.com/api-platform/postman-collection-generator" + "repo": "api-platform", + "contributions": 18, + "url": "https://github.com/api-platform/api-platform" }, { - "repo": "create-client", - "contributions": 1, - "url": "https://github.com/api-platform/create-client" + "repo": "demo", + "contributions": 424, + "url": "https://github.com/api-platform/demo" }, { "repo": "api-doc-parser", @@ -331,14 +336,9 @@ "url": "https://github.com/api-platform/api-doc-parser" }, { - "repo": "demo", - "contributions": 416, - "url": "https://github.com/api-platform/demo" - }, - { - "repo": "api-platform", - "contributions": 18, - "url": "https://github.com/api-platform/api-platform" + "repo": "create-client", + "contributions": 1, + "url": "https://github.com/api-platform/create-client" }, { "repo": "admin", @@ -350,16 +350,16 @@ "contributions": 15, "url": "https://github.com/api-platform/openapi" }, - { - "repo": "http-cache", - "contributions": 7, - "url": "https://github.com/api-platform/http-cache" - }, { "repo": "json-schema", "contributions": 9, "url": "https://github.com/api-platform/json-schema" }, + { + "repo": "http-cache", + "contributions": 7, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "metadata", "contributions": 22, @@ -375,36 +375,36 @@ "contributions": 11, "url": "https://github.com/api-platform/elasticsearch" }, - { - "repo": "ramsey-uuid", - "contributions": 2, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "graphql", "contributions": 19, "url": "https://github.com/api-platform/graphql" }, { - "repo": "laravel", + "repo": "ramsey-uuid", "contributions": 2, - "url": "https://github.com/api-platform/laravel" - }, - { - "repo": "symfony", - "contributions": 54, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/ramsey-uuid" }, { "repo": "documentation", "contributions": 5, "url": "https://github.com/api-platform/documentation" }, + { + "repo": "laravel", + "contributions": 2, + "url": "https://github.com/api-platform/laravel" + }, { "repo": "serializer", "contributions": 21, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 54, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 164, @@ -417,7 +417,7 @@ } ], "rank": 3, - "contributions": 852, + "contributions": 860, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/407859?v=4", "bio": null, @@ -435,14 +435,14 @@ "url": "https://github.com/api-platform/schema-generator" }, { - "repo": "create-client", - "contributions": 11, - "url": "https://github.com/api-platform/create-client" + "repo": "website", + "contributions": 23, + "url": "https://github.com/api-platform/website" }, { - "repo": "api-doc-parser", - "contributions": 56, - "url": "https://github.com/api-platform/api-doc-parser" + "repo": "api-platform", + "contributions": 3, + "url": "https://github.com/api-platform/api-platform" }, { "repo": "demo", @@ -450,9 +450,14 @@ "url": "https://github.com/api-platform/demo" }, { - "repo": "api-platform", - "contributions": 3, - "url": "https://github.com/api-platform/api-platform" + "repo": "api-doc-parser", + "contributions": 56, + "url": "https://github.com/api-platform/api-doc-parser" + }, + { + "repo": "create-client", + "contributions": 11, + "url": "https://github.com/api-platform/create-client" }, { "repo": "admin", @@ -460,39 +465,34 @@ "url": "https://github.com/api-platform/admin" }, { - "repo": "website", - "contributions": 23, - "url": "https://github.com/api-platform/website" + "repo": "api-platform-doc-parsing-check", + "contributions": 2, + "url": "https://github.com/api-platform/api-platform-doc-parsing-check" }, { "repo": ".github", "contributions": 2, "url": "https://github.com/api-platform/.github" }, - { - "repo": "api-platform-doc-parsing-check", - "contributions": 2, - "url": "https://github.com/api-platform/api-platform-doc-parsing-check" - }, { "repo": "openapi", "contributions": 3, "url": "https://github.com/api-platform/openapi" }, - { - "repo": "http-cache", - "contributions": 4, - "url": "https://github.com/api-platform/http-cache" - }, { "repo": "json-schema", "contributions": 8, "url": "https://github.com/api-platform/json-schema" }, { - "repo": "metadata", - "contributions": 17, - "url": "https://github.com/api-platform/metadata" + "repo": "http-cache", + "contributions": 4, + "url": "https://github.com/api-platform/http-cache" + }, + { + "repo": "metadata", + "contributions": 17, + "url": "https://github.com/api-platform/metadata" }, { "repo": "state", @@ -504,31 +504,31 @@ "contributions": 2, "url": "https://github.com/api-platform/elasticsearch" }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "graphql", "contributions": 72, "url": "https://github.com/api-platform/graphql" }, { - "repo": "laravel", + "repo": "ramsey-uuid", "contributions": 1, - "url": "https://github.com/api-platform/laravel" + "url": "https://github.com/api-platform/ramsey-uuid" }, { - "repo": "symfony", - "contributions": 23, - "url": "https://github.com/api-platform/symfony" + "repo": "laravel", + "contributions": 1, + "url": "https://github.com/api-platform/laravel" }, { "repo": "serializer", "contributions": 16, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 23, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 218, @@ -558,31 +558,31 @@ "contributions": 1, "url": "https://github.com/api-platform/schema-generator" }, - { - "repo": "demo", - "contributions": 6, - "url": "https://github.com/api-platform/demo" - }, { "repo": "api-platform", "contributions": 77, "url": "https://github.com/api-platform/api-platform" }, + { + "repo": "demo", + "contributions": 6, + "url": "https://github.com/api-platform/demo" + }, { "repo": "docker-compose-prod", "contributions": 2, "url": "https://github.com/api-platform/docker-compose-prod" }, - { - "repo": "http-cache", - "contributions": 1, - "url": "https://github.com/api-platform/http-cache" - }, { "repo": "json-schema", "contributions": 8, "url": "https://github.com/api-platform/json-schema" }, + { + "repo": "http-cache", + "contributions": 1, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "metadata", "contributions": 27, @@ -598,6 +598,11 @@ "contributions": 1, "url": "https://github.com/api-platform/documentation" }, + { + "repo": "serializer", + "contributions": 29, + "url": "https://github.com/api-platform/serializer" + }, { "repo": "vulcain", "contributions": 10, @@ -608,11 +613,6 @@ "contributions": 2, "url": "https://github.com/dunglas/mercure" }, - { - "repo": "serializer", - "contributions": 29, - "url": "https://github.com/api-platform/serializer" - }, { "repo": "core", "contributions": 333, @@ -637,25 +637,25 @@ "login": "ginifizz", "repos": [ { - "repo": "create-client", - "contributions": 1, - "url": "https://github.com/api-platform/create-client" + "repo": "website", + "contributions": 347, + "url": "https://github.com/api-platform/website" }, { "repo": "api-platform", "contributions": 2, "url": "https://github.com/api-platform/api-platform" }, + { + "repo": "create-client", + "contributions": 1, + "url": "https://github.com/api-platform/create-client" + }, { "repo": "admin", "contributions": 2, "url": "https://github.com/api-platform/admin" }, - { - "repo": "website", - "contributions": 342, - "url": "https://github.com/api-platform/website" - }, { "repo": "vulcain", "contributions": 3, @@ -668,7 +668,7 @@ } ], "rank": 6, - "contributions": 357, + "contributions": 362, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/16579730?v=4", "bio": null, @@ -686,35 +686,35 @@ "url": "https://github.com/api-platform/schema-generator" }, { - "repo": "create-client", - "contributions": 3, - "url": "https://github.com/api-platform/create-client" + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" }, { "repo": "api-platform", "contributions": 3, "url": "https://github.com/api-platform/api-platform" }, + { + "repo": "create-client", + "contributions": 3, + "url": "https://github.com/api-platform/create-client" + }, { "repo": "admin", "contributions": 5, "url": "https://github.com/api-platform/admin" }, { - "repo": "website", + "repo": "json-schema", "contributions": 1, - "url": "https://github.com/api-platform/website" + "url": "https://github.com/api-platform/json-schema" }, { "repo": "http-cache", "contributions": 1, "url": "https://github.com/api-platform/http-cache" }, - { - "repo": "json-schema", - "contributions": 1, - "url": "https://github.com/api-platform/json-schema" - }, { "repo": "metadata", "contributions": 16, @@ -730,16 +730,16 @@ "contributions": 2, "url": "https://github.com/api-platform/documentation" }, - { - "repo": "mercure", - "contributions": 2, - "url": "https://github.com/dunglas/mercure" - }, { "repo": "serializer", "contributions": 16, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "mercure", + "contributions": 2, + "url": "https://github.com/dunglas/mercure" + }, { "repo": "core", "contributions": 142, @@ -755,9 +755,9 @@ "contributions": 247, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/4034907?v=4", - "bio": "Expert Developer PHP @coopTilleuls ", + "bio": "Developer @coopTilleuls ", "name": "Baptiste Meyer", - "location": "Lille", + "location": "Chambéry", "company": "@ArteGEIE X @coopTilleuls", "blog": "" }, @@ -844,16 +844,16 @@ }, { "repo": "docs", - "contributions": 86, + "contributions": 89, "url": "https://github.com/api-platform/docs" } ], "rank": 9, - "contributions": 114, + "contributions": 117, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/46444652?v=4", - "bio": "👨‍💻 Senior dev engineer - Clean code, OOP & focus expertise - Open source contributor", - "name": "Vincent Amstoutz", + "bio": "Lead Dev, Speaker and Open Source contributor", + "name": "👨‍💻📊 Vincent Amstoutz", "location": "Lyon", "company": "@coopTilleuls", "blog": "https://www.linkedin.com/in/vincent-amstoutz" @@ -861,16 +861,16 @@ { "login": "mysiar", "repos": [ - { - "repo": "create-client", - "contributions": 41, - "url": "https://github.com/api-platform/create-client" - }, { "repo": "api-doc-parser", "contributions": 7, "url": "https://github.com/api-platform/api-doc-parser" }, + { + "repo": "create-client", + "contributions": 41, + "url": "https://github.com/api-platform/create-client" + }, { "repo": "admin", "contributions": 3, @@ -905,16 +905,16 @@ "contributions": 1, "url": "https://github.com/api-platform/schema-generator" }, - { - "repo": "api-platform", - "contributions": 5, - "url": "https://github.com/api-platform/api-platform" - }, { "repo": "website", "contributions": 1, "url": "https://github.com/api-platform/website" }, + { + "repo": "api-platform", + "contributions": 5, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "api-pack", "contributions": 1, @@ -954,25 +954,25 @@ "login": "Simperfit", "repos": [ { - "repo": "api-doc-parser", - "contributions": 1, - "url": "https://github.com/api-platform/api-doc-parser" + "repo": "website", + "contributions": 4, + "url": "https://github.com/api-platform/website" }, { "repo": "api-platform", "contributions": 3, "url": "https://github.com/api-platform/api-platform" }, + { + "repo": "api-doc-parser", + "contributions": 1, + "url": "https://github.com/api-platform/api-doc-parser" + }, { "repo": "admin", "contributions": 2, "url": "https://github.com/api-platform/admin" }, - { - "repo": "website", - "contributions": 4, - "url": "https://github.com/api-platform/website" - }, { "repo": "api-pack", "contributions": 1, @@ -1026,16 +1026,16 @@ "contributions": 4, "url": "https://github.com/api-platform/elasticsearch" }, - { - "repo": "symfony", - "contributions": 16, - "url": "https://github.com/api-platform/symfony" - }, { "repo": "documentation", "contributions": 1, "url": "https://github.com/api-platform/documentation" }, + { + "repo": "symfony", + "contributions": 16, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 33, @@ -1099,49 +1099,6 @@ "company": "webmozarts.com", "blog": "https://fr.linkedin.com/in/theofidry" }, - { - "login": "norkunas", - "repos": [ - { - "repo": "json-schema", - "contributions": 1, - "url": "https://github.com/api-platform/json-schema" - }, - { - "repo": "graphql", - "contributions": 1, - "url": "https://github.com/api-platform/graphql" - }, - { - "repo": "symfony", - "contributions": 2, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "serializer", - "contributions": 2, - "url": "https://github.com/api-platform/serializer" - }, - { - "repo": "core", - "contributions": 33, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 15, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 15, - "contributions": 54, - "avatar_url": "https://avatars.githubusercontent.com/u/2722872?v=4", - "bio": "Father • Software Developer", - "name": "Tomas Norkūnas", - "location": "Kaunas, Lithuania", - "company": "@Aciety", - "blog": "" - }, { "login": "VincentLanglet", "repos": [ @@ -1155,39 +1112,40 @@ "contributions": 4, "url": "https://github.com/api-platform/elasticsearch" }, + { + "repo": "graphql", + "contributions": 8, + "url": "https://github.com/api-platform/graphql" + }, { "repo": "ramsey-uuid", "contributions": 1, "url": "https://github.com/api-platform/ramsey-uuid" }, - { - "repo": "graphql", - "contributions": 7, - "url": "https://github.com/api-platform/graphql" - }, { "repo": "laravel", - "contributions": 4, + "contributions": 5, "url": "https://github.com/api-platform/laravel" }, + { + "repo": "serializer", + "contributions": 8, + "url": "https://github.com/api-platform/serializer" + }, { "repo": "symfony", "contributions": 10, "url": "https://github.com/api-platform/symfony" }, - { - "repo": "serializer", - "contributions": 6, - "url": "https://github.com/api-platform/serializer" - }, { "repo": "core", - "contributions": 14, + "contributions": 21, "url": "https://github.com/api-platform/core" } ], - "rank": 16, - "contributions": 49, + "rank": 15, + "contributions": 60, + "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/9052536?v=4", "bio": null, "name": "Vincent Langlet", @@ -1196,41 +1154,84 @@ "blog": "" }, { - "login": "pborreli", + "login": "norkunas", "repos": [ { - "repo": "schema-generator", + "repo": "json-schema", "contributions": 1, - "url": "https://github.com/api-platform/schema-generator" + "url": "https://github.com/api-platform/json-schema" }, { - "repo": "api-doc-parser", + "repo": "graphql", "contributions": 1, - "url": "https://github.com/api-platform/api-doc-parser" - }, - { - "repo": "demo", - "contributions": 36, - "url": "https://github.com/api-platform/demo" - }, - { - "repo": "api-platform", - "contributions": 4, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/graphql" }, { - "repo": "vulcain", - "contributions": 1, - "url": "https://github.com/dunglas/vulcain" + "repo": "serializer", + "contributions": 2, + "url": "https://github.com/api-platform/serializer" }, { - "repo": "mercure", - "contributions": 1, - "url": "https://github.com/dunglas/mercure" + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", - "contributions": 3, + "contributions": 33, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 15, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 16, + "contributions": 54, + "avatar_url": "https://avatars.githubusercontent.com/u/2722872?v=4", + "bio": "Father • Software Developer", + "name": "Tomas Norkūnas", + "location": "Kaunas, Lithuania", + "company": "@Aciety", + "blog": "" + }, + { + "login": "pborreli", + "repos": [ + { + "repo": "schema-generator", + "contributions": 1, + "url": "https://github.com/api-platform/schema-generator" + }, + { + "repo": "api-platform", + "contributions": 4, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "demo", + "contributions": 36, + "url": "https://github.com/api-platform/demo" + }, + { + "repo": "api-doc-parser", + "contributions": 1, + "url": "https://github.com/api-platform/api-doc-parser" + }, + { + "repo": "vulcain", + "contributions": 1, + "url": "https://github.com/dunglas/vulcain" + }, + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" + }, + { + "repo": "core", + "contributions": 3, "url": "https://github.com/api-platform/core" }, { @@ -1294,16 +1295,16 @@ { "login": "GregoireHebert", "repos": [ - { - "repo": "api-platform", - "contributions": 2, - "url": "https://github.com/api-platform/api-platform" - }, { "repo": "website", "contributions": 6, "url": "https://github.com/api-platform/website" }, + { + "repo": "api-platform", + "contributions": 2, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "api-pack", "contributions": 1, @@ -1320,25 +1321,25 @@ "url": "https://github.com/api-platform/state" }, { - "repo": "laravel", - "contributions": 1, - "url": "https://github.com/api-platform/laravel" - }, - { - "repo": "symfony", + "repo": "documentation", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/documentation" }, { - "repo": "documentation", + "repo": "laravel", "contributions": 1, - "url": "https://github.com/api-platform/documentation" + "url": "https://github.com/api-platform/laravel" }, { "repo": "serializer", "contributions": 2, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 16, @@ -1387,9 +1388,14 @@ "login": "toofff", "repos": [ { - "repo": "create-client", - "contributions": 4, - "url": "https://github.com/api-platform/create-client" + "repo": "website", + "contributions": 15, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "api-platform", + "contributions": 3, + "url": "https://github.com/api-platform/api-platform" }, { "repo": "demo", @@ -1397,20 +1403,15 @@ "url": "https://github.com/api-platform/demo" }, { - "repo": "api-platform", - "contributions": 3, - "url": "https://github.com/api-platform/api-platform" + "repo": "create-client", + "contributions": 4, + "url": "https://github.com/api-platform/create-client" }, { "repo": "admin", "contributions": 1, "url": "https://github.com/api-platform/admin" }, - { - "repo": "website", - "contributions": 15, - "url": "https://github.com/api-platform/website" - }, { "repo": ".github", "contributions": 3, @@ -1477,16 +1478,16 @@ "contributions": 1, "url": "https://github.com/api-platform/metadata" }, - { - "repo": "mercure", - "contributions": 1, - "url": "https://github.com/dunglas/mercure" - }, { "repo": "serializer", "contributions": 7, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" + }, { "repo": "core", "contributions": 27, @@ -1511,9 +1512,9 @@ "login": "Mathieudewet", "repos": [ { - "repo": "demo", - "contributions": 14, - "url": "https://github.com/api-platform/demo" + "repo": "website", + "contributions": 17, + "url": "https://github.com/api-platform/website" }, { "repo": "api-platform", @@ -1521,9 +1522,9 @@ "url": "https://github.com/api-platform/api-platform" }, { - "repo": "website", - "contributions": 17, - "url": "https://github.com/api-platform/website" + "repo": "demo", + "contributions": 14, + "url": "https://github.com/api-platform/demo" }, { "repo": "core", @@ -1548,26 +1549,26 @@ { "login": "Romaixn", "repos": [ - { - "repo": "demo", - "contributions": 1, - "url": "https://github.com/api-platform/demo" - }, { "repo": "website", "contributions": 19, "url": "https://github.com/api-platform/website" }, { - "repo": "symfony", - "contributions": 2, - "url": "https://github.com/api-platform/symfony" + "repo": "demo", + "contributions": 1, + "url": "https://github.com/api-platform/demo" }, { "repo": "documentation", "contributions": 1, "url": "https://github.com/api-platform/documentation" }, + { + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 3, @@ -1592,9 +1593,9 @@ "login": "jfcoz", "repos": [ { - "repo": "demo", - "contributions": 22, - "url": "https://github.com/api-platform/demo" + "repo": "website", + "contributions": 8, + "url": "https://github.com/api-platform/website" }, { "repo": "api-platform", @@ -1602,9 +1603,9 @@ "url": "https://github.com/api-platform/api-platform" }, { - "repo": "website", - "contributions": 8, - "url": "https://github.com/api-platform/website" + "repo": "demo", + "contributions": 22, + "url": "https://github.com/api-platform/demo" }, { "repo": "mercure", @@ -1621,30 +1622,6 @@ "company": "Les-Tilleuls.coop @coopTilleuls ", "blog": "https://julien.francoz.net/" }, - { - "login": "ThomasSamson", - "repos": [ - { - "repo": "website", - "contributions": 29, - "url": "https://github.com/api-platform/website" - }, - { - "repo": "docs", - "contributions": 4, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 27, - "contributions": 33, - "isCoreTeam": true, - "avatar_url": "https://avatars.githubusercontent.com/u/93578303?v=4", - "bio": "SRE / DevOps", - "name": "Thomas SAMSON", - "location": "Bordeaux", - "company": "@coopTilleuls ", - "blog": "" - }, { "login": "caseyWebb", "repos": [ @@ -1654,7 +1631,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 28, + "rank": 27, "contributions": 33, "avatar_url": "https://avatars.githubusercontent.com/u/5419074?v=4", "bio": "just some dude that writes code and grows plants.", @@ -1663,6 +1640,74 @@ "company": "@Avetta", "blog": "" }, + { + "login": "maxhelias", + "repos": [ + { + "repo": "schema-generator", + "contributions": 2, + "url": "https://github.com/api-platform/schema-generator" + }, + { + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "elasticsearch", + "contributions": 1, + "url": "https://github.com/api-platform/elasticsearch" + }, + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "documentation", + "contributions": 1, + "url": "https://github.com/api-platform/documentation" + }, + { + "repo": "laravel", + "contributions": 3, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "mercure", + "contributions": 5, + "url": "https://github.com/dunglas/mercure" + }, + { + "repo": "symfony", + "contributions": 5, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 8, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 4, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 28, + "contributions": 32, + "avatar_url": "https://avatars.githubusercontent.com/u/12966574?v=4", + "bio": "#Docker 🐋 #PHP 🐘; Back-end Developer", + "name": "Maxime Helias", + "location": "Limoges", + "company": "@odandb", + "blog": "" + }, { "login": "toitzi", "repos": [ @@ -1698,7 +1743,7 @@ "bio": "@koseven Core Member                      \r\nApp and Web-Developer", "name": "Tobias Oitzinger", "location": "Vienna, Austria", - "company": null, + "company": "@xcoorp", "blog": "https://toitzi.dev" }, { @@ -1754,9 +1799,9 @@ "url": "https://github.com/api-platform/graphql" }, { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "repo": "serializer", + "contributions": 3, + "url": "https://github.com/api-platform/serializer" }, { "repo": "vulcain", @@ -1764,9 +1809,9 @@ "url": "https://github.com/dunglas/vulcain" }, { - "repo": "serializer", - "contributions": 3, - "url": "https://github.com/api-platform/serializer" + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -1788,6 +1833,54 @@ "company": "@jolicode", "blog": "" }, + { + "login": "ttskch", + "repos": [ + { + "repo": "openapi", + "contributions": 1, + "url": "https://github.com/api-platform/openapi" + }, + { + "repo": "metadata", + "contributions": 1, + "url": "https://github.com/api-platform/metadata" + }, + { + "repo": "laravel", + "contributions": 2, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "symfony", + "contributions": 5, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 16, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 4, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 32, + "contributions": 30, + "avatar_url": "https://avatars.githubusercontent.com/u/4360663?v=4", + "bio": null, + "name": "Takashi Kanemoto", + "location": "Kobe, Hyogo, Japan", + "company": "Kannade Inc.", + "blog": "https://ttskch.com" + }, { "login": "Nightbr", "repos": [ @@ -1807,7 +1900,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 32, + "rank": 33, "contributions": 29, "avatar_url": "https://avatars.githubusercontent.com/u/4228646?v=4", "bio": "CoFounder & CTO @ Dotfile", @@ -1817,71 +1910,51 @@ "blog": "https://www.dotfile.com" }, { - "login": "maxhelias", + "login": "aaa2000", "repos": [ { - "repo": "schema-generator", - "contributions": 2, - "url": "https://github.com/api-platform/schema-generator" - }, - { - "repo": "api-platform", + "repo": "demo", "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/demo" }, { - "repo": "elasticsearch", + "repo": "json-schema", "contributions": 1, - "url": "https://github.com/api-platform/elasticsearch" + "url": "https://github.com/api-platform/json-schema" }, { - "repo": "graphql", - "contributions": 1, - "url": "https://github.com/api-platform/graphql" + "repo": "metadata", + "contributions": 3, + "url": "https://github.com/api-platform/metadata" }, { - "repo": "laravel", - "contributions": 3, - "url": "https://github.com/api-platform/laravel" + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" }, { "repo": "symfony", "contributions": 4, "url": "https://github.com/api-platform/symfony" }, - { - "repo": "documentation", - "contributions": 1, - "url": "https://github.com/api-platform/documentation" - }, - { - "repo": "mercure", - "contributions": 5, - "url": "https://github.com/dunglas/mercure" - }, - { - "repo": "serializer", - "contributions": 1, - "url": "https://github.com/api-platform/serializer" - }, { "repo": "core", - "contributions": 7, + "contributions": 17, "url": "https://github.com/api-platform/core" }, { "repo": "docs", - "contributions": 3, + "contributions": 2, "url": "https://github.com/api-platform/docs" } ], - "rank": 33, + "rank": 34, "contributions": 29, - "avatar_url": "https://avatars.githubusercontent.com/u/12966574?v=4", - "bio": "#Docker 🐋 #PHP 🐘; Back-end Developer", - "name": "Maxime Helias", - "location": "Limoges", - "company": "@odandb", + "avatar_url": "https://avatars.githubusercontent.com/u/163941?v=4", + "bio": null, + "name": null, + "location": "France", + "company": null, "blog": "" }, { @@ -1903,28 +1976,61 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 34, + "rank": 35, "contributions": 27, "avatar_url": "https://avatars.githubusercontent.com/u/3725595?v=4", - "bio": "PHP and Javascript developer.\r\nCreator of https://infection.github.io\r\n", + "bio": "Software Engineer, mainly PHP and Node.js.\r\n\r\nCreator of https://infection.github.io", "name": "Maks Rafalko", "location": "Warsaw", "company": "@infection ", "blog": "https://maks-rafalko.github.io/" }, { - "login": "Zowac", + "login": "alexndlm", "repos": [ { - "repo": "http-cache", + "repo": "laravel", "contributions": 1, - "url": "https://github.com/api-platform/http-cache" + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "serializer", + "contributions": 4, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "symfony", + "contributions": 7, + "url": "https://github.com/api-platform/symfony" }, + { + "repo": "core", + "contributions": 14, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 36, + "contributions": 26, + "avatar_url": "https://avatars.githubusercontent.com/u/6824784?v=4", + "bio": null, + "name": "Aleksey Polyvanyi", + "location": "Kraków, Poland", + "company": null, + "blog": "" + }, + { + "login": "Zowac", + "repos": [ { "repo": "json-schema", "contributions": 2, "url": "https://github.com/api-platform/json-schema" }, + { + "repo": "http-cache", + "contributions": 1, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "metadata", "contributions": 1, @@ -1935,16 +2041,16 @@ "contributions": 1, "url": "https://github.com/api-platform/elasticsearch" }, - { - "repo": "symfony", - "contributions": 5, - "url": "https://github.com/api-platform/symfony" - }, { "repo": "serializer", "contributions": 1, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 5, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 11, @@ -1956,7 +2062,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 35, + "rank": 37, "contributions": 25, "avatar_url": "https://avatars.githubusercontent.com/u/33932697?v=4", "bio": "Back-end developer", @@ -1983,33 +2089,33 @@ "contributions": 1, "url": "https://github.com/api-platform/elasticsearch" }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "graphql", "contributions": 1, "url": "https://github.com/api-platform/graphql" }, { - "repo": "symfony", - "contributions": 5, - "url": "https://github.com/api-platform/symfony" + "repo": "ramsey-uuid", + "contributions": 1, + "url": "https://github.com/api-platform/ramsey-uuid" }, { "repo": "serializer", "contributions": 2, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 5, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 12, "url": "https://github.com/api-platform/core" } ], - "rank": 36, + "rank": 38, "contributions": 25, "avatar_url": "https://avatars.githubusercontent.com/u/95523073?v=4", "bio": null, @@ -2019,45 +2125,17 @@ "blog": "" }, { - "login": "alexndlm", + "login": "Fabious", "repos": [ { - "repo": "laravel", - "contributions": 1, - "url": "https://github.com/api-platform/laravel" - }, - { - "repo": "symfony", - "contributions": 6, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "serializer", - "contributions": 4, - "url": "https://github.com/api-platform/serializer" + "repo": "website", + "contributions": 9, + "url": "https://github.com/api-platform/website" }, { - "repo": "core", - "contributions": 13, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 37, - "contributions": 24, - "avatar_url": "https://avatars.githubusercontent.com/u/6824784?v=4", - "bio": null, - "name": "Aleksey Polyvanyi", - "location": "Kraków, Poland", - "company": null, - "blog": "" - }, - { - "login": "Fabious", - "repos": [ - { - "repo": "create-client", + "repo": "api-platform", "contributions": 2, - "url": "https://github.com/api-platform/create-client" + "url": "https://github.com/api-platform/api-platform" }, { "repo": "api-doc-parser", @@ -2065,20 +2143,15 @@ "url": "https://github.com/api-platform/api-doc-parser" }, { - "repo": "api-platform", + "repo": "create-client", "contributions": 2, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/create-client" }, { "repo": "admin", "contributions": 4, "url": "https://github.com/api-platform/admin" }, - { - "repo": "website", - "contributions": 9, - "url": "https://github.com/api-platform/website" - }, { "repo": "mercure", "contributions": 2, @@ -2090,10 +2163,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 38, + "rank": 39, "contributions": 23, "avatar_url": "https://avatars.githubusercontent.com/u/1923784?v=4", - "bio": "Lead Front Developper @coopTilleuls 🧙‍♂️\r\n❤️ Typescript and React", + "bio": "Expert Front Developper @coopTilleuls 🧙‍♂️\r\n❤️ Typescript and React", "name": "Fabien Kovacic", "location": "Calais, France", "company": "@coopTilleuls ", @@ -2123,7 +2196,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 39, + "rank": 40, "contributions": 23, "avatar_url": "https://avatars.githubusercontent.com/u/481937?v=4", "bio": null, @@ -2150,11 +2223,6 @@ "contributions": 1, "url": "https://github.com/api-platform/state" }, - { - "repo": "symfony", - "contributions": 3, - "url": "https://github.com/api-platform/symfony" - }, { "repo": "vulcain", "contributions": 1, @@ -2165,6 +2233,11 @@ "contributions": 1, "url": "https://github.com/dunglas/mercure" }, + { + "repo": "symfony", + "contributions": 3, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 10, @@ -2176,10 +2249,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 40, + "rank": 41, "contributions": 22, "avatar_url": "https://avatars.githubusercontent.com/u/7502063?v=4", - "bio": "Software Architect // Maintainer @symfony, @thephpleague, @lexik & more // Co-Founder & CEO @bakslashHQ ", + "bio": "Software Architect // Maintainer @symfony, @thephpleague, @lexik // Co-Founder & CEO @bakslashHQ ", "name": "Robin Chalas", "location": "Lyon, France", "company": "@bakslashHQ", @@ -2203,16 +2276,16 @@ "contributions": 1, "url": "https://github.com/api-platform/graphql" }, - { - "repo": "symfony", - "contributions": 5, - "url": "https://github.com/api-platform/symfony" - }, { "repo": "serializer", "contributions": 1, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 5, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 7, @@ -2224,7 +2297,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 41, + "rank": 42, "contributions": 21, "avatar_url": "https://avatars.githubusercontent.com/u/24696606?v=4", "bio": null, @@ -2252,7 +2325,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 42, + "rank": 43, "contributions": 21, "avatar_url": "https://avatars.githubusercontent.com/u/7404452?v=4", "bio": null, @@ -2264,30 +2337,30 @@ { "login": "darthf1", "repos": [ - { - "repo": "demo", - "contributions": 1, - "url": "https://github.com/api-platform/demo" - }, { "repo": "api-platform", "contributions": 6, "url": "https://github.com/api-platform/api-platform" }, + { + "repo": "demo", + "contributions": 1, + "url": "https://github.com/api-platform/demo" + }, { "repo": "elasticsearch", "contributions": 3, "url": "https://github.com/api-platform/elasticsearch" }, { - "repo": "symfony", + "repo": "mercure", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/dunglas/mercure" }, { - "repo": "mercure", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/dunglas/mercure" + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -2300,7 +2373,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 43, + "rank": 44, "contributions": 20, "avatar_url": "https://avatars.githubusercontent.com/u/17253332?v=4", "bio": null, @@ -2332,38 +2405,38 @@ "contributions": 1, "url": "https://github.com/api-platform/elasticsearch" }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "graphql", "contributions": 2, "url": "https://github.com/api-platform/graphql" }, { - "repo": "laravel", + "repo": "ramsey-uuid", "contributions": 1, - "url": "https://github.com/api-platform/laravel" + "url": "https://github.com/api-platform/ramsey-uuid" }, { - "repo": "symfony", - "contributions": 3, - "url": "https://github.com/api-platform/symfony" + "repo": "laravel", + "contributions": 1, + "url": "https://github.com/api-platform/laravel" }, { "repo": "serializer", "contributions": 2, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 3, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 6, "url": "https://github.com/api-platform/core" } ], - "rank": 44, + "rank": 45, "contributions": 20, "avatar_url": "https://avatars.githubusercontent.com/u/4955509?v=4", "bio": null, @@ -2406,7 +2479,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 45, + "rank": 46, "contributions": 20, "avatar_url": "https://avatars.githubusercontent.com/u/25110039?v=4", "bio": null, @@ -2415,6 +2488,39 @@ "company": null, "blog": "" }, + { + "login": "GromNaN", + "repos": [ + { + "repo": "laravel", + "contributions": 1, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "symfony", + "contributions": 5, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 10, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 3, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 47, + "contributions": 19, + "avatar_url": "https://avatars.githubusercontent.com/u/400034?v=4", + "bio": "@mongodb PHP and @Symfony core team", + "name": "Jérôme Tamarelle", + "location": "Rouen, France", + "company": "MongoDB", + "blog": "https://jerome.tamarelle.net/" + }, { "login": "jocel1", "repos": [ @@ -2434,7 +2540,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 46, + "rank": 48, "contributions": 19, "avatar_url": "https://avatars.githubusercontent.com/u/1429072?v=4", "bio": "Love everything related to database (especially MySQL), software and system optimization. \r\n25+ years experience in LAMP.", @@ -2462,7 +2568,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 47, + "rank": 49, "contributions": 18, "avatar_url": "https://avatars.githubusercontent.com/u/1427081?v=4", "bio": null, @@ -2474,16 +2580,16 @@ { "login": "Deuchnord", "repos": [ - { - "repo": "create-client", - "contributions": 1, - "url": "https://github.com/api-platform/create-client" - }, { "repo": "website", "contributions": 2, "url": "https://github.com/api-platform/website" }, + { + "repo": "create-client", + "contributions": 1, + "url": "https://github.com/api-platform/create-client" + }, { "repo": "json-schema", "contributions": 1, @@ -2505,7 +2611,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 48, + "rank": 50, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/7600265?v=4", "bio": "Back-end developer at @coopTilleuls, amateur astronomer. Creator of @Kosmorro and f2ap.\r\nI eat pain au chocolat at breakfast.", @@ -2523,7 +2629,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 49, + "rank": 51, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/5477973?v=4", "bio": "Senior PHP/Symfony developer 🐘 Learning Rust 🦀", @@ -2546,7 +2652,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 50, + "rank": 52, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/154256?v=4", "bio": "@Roave, @laminas and @doctrine. Pushing for better practices in the PHP ecosystem.", @@ -2578,33 +2684,33 @@ "contributions": 1, "url": "https://github.com/api-platform/state" }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "graphql", "contributions": 2, "url": "https://github.com/api-platform/graphql" }, { - "repo": "symfony", + "repo": "ramsey-uuid", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/ramsey-uuid" }, { "repo": "serializer", "contributions": 1, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 7, "url": "https://github.com/api-platform/core" } ], - "rank": 51, + "rank": 53, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/49146882?v=4", "bio": "Backend developer working with @symfony and @api-platform", @@ -2632,7 +2738,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 52, + "rank": 54, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/17310106?v=4", "bio": null, @@ -2670,7 +2776,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 53, + "rank": 55, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/1736542?v=4", "bio": null, @@ -2698,7 +2804,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 54, + "rank": 56, "contributions": 16, "avatar_url": "https://avatars.githubusercontent.com/u/14937343?v=4", "bio": "Lead developer @coopTilleuls ", @@ -2708,12 +2814,22 @@ "blog": "" }, { - "login": "GuilhemN", + "login": "Maxcastel", "repos": [ { - "repo": "metadata", + "repo": "elasticsearch", "contributions": 1, - "url": "https://github.com/api-platform/metadata" + "url": "https://github.com/api-platform/elasticsearch" + }, + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "ramsey-uuid", + "contributions": 1, + "url": "https://github.com/api-platform/ramsey-uuid" }, { "repo": "serializer", @@ -2721,24 +2837,24 @@ "url": "https://github.com/api-platform/serializer" }, { - "repo": "core", - "contributions": 13, - "url": "https://github.com/api-platform/core" + "repo": "symfony", + "contributions": 5, + "url": "https://github.com/api-platform/symfony" }, { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" + "repo": "core", + "contributions": 7, + "url": "https://github.com/api-platform/core" } ], - "rank": 55, + "rank": 57, "contributions": 16, - "avatar_url": "https://avatars.githubusercontent.com/u/6871899?v=4", - "bio": "PhD student at PQShield and Université de Rennes 1.\r\nI love post-quantum cryptography, software security, and privacy projects!", - "name": "Guilhem Niot", - "location": "Paris, France", - "company": "PQShield", - "blog": "https://gniot.fr" + "avatar_url": "https://avatars.githubusercontent.com/u/92802347?v=4", + "bio": null, + "name": null, + "location": null, + "company": "@coopTilleuls", + "blog": "" }, { "login": "samnela", @@ -2754,7 +2870,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 56, + "rank": 58, "contributions": 16, "avatar_url": "https://avatars.githubusercontent.com/u/1852108?v=4", "bio": "Life is short, live your dream and wear your passion.", @@ -2764,25 +2880,83 @@ "blog": "" }, { - "login": "deguif", + "login": "J3m5", "repos": [ { - "repo": "symfony", - "contributions": 2, - "url": "https://github.com/api-platform/symfony" + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "api-doc-parser", + "contributions": 12, + "url": "https://github.com/api-platform/api-doc-parser" + }, + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 59, + "contributions": 15, + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/5523410?v=4", + "bio": null, + "name": "Jems", + "location": null, + "company": "@coopTilleuls", + "blog": "" + }, + { + "login": "ThomasSamson", + "repos": [ + { + "repo": "website", + "contributions": 13, + "url": "https://github.com/api-platform/website" }, + { + "repo": "docs", + "contributions": 2, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 60, + "contributions": 15, + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/93578303?v=4", + "bio": "SRE / DevOps", + "name": "Thomas SAMSON", + "location": "Bordeaux", + "company": "@coopTilleuls ", + "blog": "" + }, + { + "login": "deguif", + "repos": [ { "repo": "serializer", "contributions": 2, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 11, "url": "https://github.com/api-platform/core" } ], - "rank": 57, + "rank": 61, "contributions": 15, "avatar_url": "https://avatars.githubusercontent.com/u/993399?v=4", "bio": null, @@ -2799,16 +2973,16 @@ "contributions": 1, "url": "https://github.com/api-platform/metadata" }, - { - "repo": "symfony", - "contributions": 2, - "url": "https://github.com/api-platform/symfony" - }, { "repo": "serializer", "contributions": 1, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 7, @@ -2820,7 +2994,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 58, + "rank": 62, "contributions": 15, "avatar_url": "https://avatars.githubusercontent.com/u/15611563?v=4", "bio": null, @@ -2832,6 +3006,11 @@ { "login": "mauchede", "repos": [ + { + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" + }, { "repo": "api-doc-parser", "contributions": 4, @@ -2841,14 +3020,9 @@ "repo": "admin", "contributions": 10, "url": "https://github.com/api-platform/admin" - }, - { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" } ], - "rank": 59, + "rank": 63, "contributions": 15, "avatar_url": "https://avatars.githubusercontent.com/u/5702936?v=4", "bio": null, @@ -2858,103 +3032,69 @@ "blog": "" }, { - "login": "GromNaN", + "login": "ValentinCrochemore", "repos": [ { - "repo": "laravel", - "contributions": 1, - "url": "https://github.com/api-platform/laravel" - }, - { - "repo": "symfony", + "repo": "website", "contributions": 3, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/website" }, { - "repo": "core", - "contributions": 7, - "url": "https://github.com/api-platform/core" + "repo": "create-client", + "contributions": 5, + "url": "https://github.com/api-platform/create-client" }, { "repo": "docs", - "contributions": 3, + "contributions": 6, "url": "https://github.com/api-platform/docs" } ], - "rank": 60, + "rank": 64, "contributions": 14, - "avatar_url": "https://avatars.githubusercontent.com/u/400034?v=4", - "bio": "@mongodb PHP and @Symfony core team", - "name": "Jérôme Tamarelle", - "location": "Rouen, France", - "company": "MongoDB", - "blog": "https://jerome.tamarelle.net/" + "avatar_url": "https://avatars.githubusercontent.com/u/11048185?v=4", + "bio": "French web developer | @vuejs lover | ex @hetic | Front dev @Troupers_fr | Easy peasy lemon squeezy", + "name": "Valentin", + "location": null, + "company": null, + "blog": "http://valentin-crochemore.fr" }, { - "login": "J3m5", + "login": "jderusse", "repos": [ { - "repo": "api-doc-parser", - "contributions": 11, - "url": "https://github.com/api-platform/api-doc-parser" - }, - { - "repo": "api-platform", - "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "repo": "mercure", + "contributions": 6, + "url": "https://github.com/dunglas/mercure" }, { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" }, { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" + "repo": "core", + "contributions": 6, + "url": "https://github.com/api-platform/core" } ], - "rank": 61, + "rank": 65, "contributions": 14, - "isCoreTeam": true, - "avatar_url": "https://avatars.githubusercontent.com/u/5523410?v=4", - "bio": null, - "name": "Jems", - "location": null, - "company": "@coopTilleuls", + "avatar_url": "https://avatars.githubusercontent.com/u/578547?v=4", + "bio": "@symfony Core contributor", + "name": "Jérémy Derussé", + "location": "Paris, France", + "company": "Blackfire", "blog": "" }, { - "login": "ValentinCrochemore", + "login": "justinezahiri", "repos": [ - { - "repo": "create-client", - "contributions": 5, - "url": "https://github.com/api-platform/create-client" - }, { "repo": "website", - "contributions": 3, + "contributions": 1, "url": "https://github.com/api-platform/website" }, - { - "repo": "docs", - "contributions": 6, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 62, - "contributions": 14, - "avatar_url": "https://avatars.githubusercontent.com/u/11048185?v=4", - "bio": "French web developer | @vuejs lover | ex @hetic | Front dev @Troupers_fr | Easy peasy lemon squeezy", - "name": "Valentin", - "location": null, - "company": null, - "blog": "http://valentin-crochemore.fr" - }, - { - "login": "justinezahiri", - "repos": [ { "repo": "create-client", "contributions": 9, @@ -2965,18 +3105,13 @@ "contributions": 1, "url": "https://github.com/api-platform/admin" }, - { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" - }, { "repo": "docs", "contributions": 3, "url": "https://github.com/api-platform/docs" } ], - "rank": 63, + "rank": 66, "contributions": 14, "avatar_url": "https://avatars.githubusercontent.com/u/41168990?v=4", "bio": "Front-end web developer @cooptilleuls\r\nIronhack alumni.\r\n", @@ -2994,14 +3129,14 @@ "url": "https://github.com/api-platform/openapi" }, { - "repo": "http-cache", + "repo": "json-schema", "contributions": 1, - "url": "https://github.com/api-platform/http-cache" + "url": "https://github.com/api-platform/json-schema" }, { - "repo": "json-schema", + "repo": "http-cache", "contributions": 1, - "url": "https://github.com/api-platform/json-schema" + "url": "https://github.com/api-platform/http-cache" }, { "repo": "metadata", @@ -3018,20 +3153,15 @@ "contributions": 1, "url": "https://github.com/api-platform/elasticsearch" }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "graphql", "contributions": 1, "url": "https://github.com/api-platform/graphql" }, { - "repo": "symfony", + "repo": "ramsey-uuid", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/ramsey-uuid" }, { "repo": "documentation", @@ -3043,13 +3173,18 @@ "contributions": 1, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 3, "url": "https://github.com/api-platform/core" } ], - "rank": 64, + "rank": 67, "contributions": 14, "avatar_url": "https://avatars.githubusercontent.com/u/47776596?v=4", "bio": null, @@ -3071,11 +3206,6 @@ "contributions": 1, "url": "https://github.com/api-platform/metadata" }, - { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" - }, { "repo": "documentation", "contributions": 1, @@ -3086,19 +3216,24 @@ "contributions": 1, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 9, "url": "https://github.com/api-platform/core" } ], - "rank": 65, + "rank": 68, "contributions": 14, "avatar_url": "https://avatars.githubusercontent.com/u/10139766?v=4", - "bio": "developer at @coopTilleuls \r\ncertified Symfony", + "bio": "developer at @mapado - \r\ncertified Symfony", "name": "Nicolas PHILIPPE", "location": "Lyon", - "company": "@coopTilleuls ", + "company": "@mapado ", "blog": "" }, { @@ -3125,7 +3260,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 66, + "rank": 69, "contributions": 13, "avatar_url": "https://avatars.githubusercontent.com/u/47628187?v=4", "bio": null, @@ -3135,35 +3270,88 @@ "blog": "" }, { - "login": "aaa2000", + "login": "NathanPesneau", "repos": [ { - "repo": "demo", + "repo": "graphql", "contributions": 1, - "url": "https://github.com/api-platform/demo" + "url": "https://github.com/api-platform/graphql" }, { - "repo": "json-schema", + "repo": "laravel", + "contributions": 3, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "serializer", "contributions": 1, - "url": "https://github.com/api-platform/json-schema" + "url": "https://github.com/api-platform/serializer" }, { - "repo": "metadata", - "contributions": 3, - "url": "https://github.com/api-platform/metadata" + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", - "contributions": 8, + "contributions": 4, "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 2, + "url": "https://github.com/api-platform/docs" } ], - "rank": 67, + "rank": 70, "contributions": 13, - "avatar_url": "https://avatars.githubusercontent.com/u/163941?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/129308244?v=4", "bio": null, - "name": null, - "location": "France", + "name": "Nathan Pesneau", + "location": null, + "company": null, + "blog": "" + }, + { + "login": "divine", + "repos": [ + { + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "mercure", + "contributions": 5, + "url": "https://github.com/dunglas/mercure" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 2, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 71, + "contributions": 13, + "avatar_url": "https://avatars.githubusercontent.com/u/48183131?v=4", + "bio": "Mars", + "name": "Divine", + "location": "Mars", "company": null, "blog": "" }, @@ -3181,7 +3369,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 68, + "rank": 72, "contributions": 13, "avatar_url": "https://avatars.githubusercontent.com/u/4408379?v=4", "bio": "̶ ̶O̶b̶s̶e̶s̶s̶e̶d̶ open-source enthusiast 👋 \r\nEternal amateur at everything 🤷‍♂️\r\nMaintainer of Russian docs for PHP, React, Kubernetes and much more 🧐", @@ -3209,7 +3397,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 69, + "rank": 73, "contributions": 13, "avatar_url": "https://avatars.githubusercontent.com/u/6652670?v=4", "bio": null, @@ -3219,58 +3407,25 @@ "blog": "" }, { - "login": "toby-griffiths", + "login": "COil", "repos": [ { - "repo": "schema-generator", - "contributions": 2, - "url": "https://github.com/api-platform/schema-generator" - }, - { - "repo": "api-platform", - "contributions": 3, - "url": "https://github.com/api-platform/api-platform" - }, - { - "repo": "core", + "repo": "website", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/website" }, - { - "repo": "docs", - "contributions": 7, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 70, - "contributions": 13, - "avatar_url": "https://avatars.githubusercontent.com/u/4817007?v=4", - "bio": null, - "name": "Toby Griffiths", - "location": "Manchester, UK", - "company": "Cubic Mushroom", - "blog": "http://tobyg.net" - }, - { - "login": "COil", - "repos": [ { "repo": "demo", "contributions": 7, "url": "https://github.com/api-platform/demo" }, - { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" - }, { "repo": "docs", "contributions": 4, "url": "https://github.com/api-platform/docs" } ], - "rank": 71, + "rank": 74, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/177844?v=4", "bio": "I am the creator of the PHP/Symfony https://www.strangebuzz.com blog.", @@ -3282,110 +3437,49 @@ { "login": "Gregcop1", "repos": [ - { - "repo": "create-client", - "contributions": 3, - "url": "https://github.com/api-platform/create-client" - }, - { - "repo": "api-doc-parser", - "contributions": 1, - "url": "https://github.com/api-platform/api-doc-parser" - }, - { - "repo": "demo", - "contributions": 1, - "url": "https://github.com/api-platform/demo" - }, { "repo": "website", "contributions": 2, "url": "https://github.com/api-platform/website" }, { - "repo": "docs", - "contributions": 5, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 72, - "contributions": 12, - "isCoreTeam": true, - "avatar_url": "https://avatars.githubusercontent.com/u/1257968?v=4", - "bio": null, - "name": "Grégory Copin", - "location": "Lille", - "company": "Les-Tilleuls.coop", - "blog": "http://www.les-tilleuls.coop" - }, - { - "login": "Nek-", - "repos": [ - { - "repo": "metadata", - "contributions": 3, - "url": "https://github.com/api-platform/metadata" - }, - { - "repo": "serializer", + "repo": "demo", "contributions": 1, - "url": "https://github.com/api-platform/serializer" - }, - { - "repo": "core", - "contributions": 7, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/demo" }, { - "repo": "docs", + "repo": "api-doc-parser", "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 73, - "contributions": 12, - "avatar_url": "https://avatars.githubusercontent.com/u/972456?v=4", - "bio": "Weird interesting stuff. Also Swag industries.", - "name": "Maxime Veber", - "location": "Paris, France", - "company": "@dayuseio", - "blog": "https://swag.industries" - }, - { - "login": "comxd", - "repos": [ + "url": "https://github.com/api-platform/api-doc-parser" + }, { - "repo": "admin", + "repo": "create-client", "contributions": 3, - "url": "https://github.com/api-platform/admin" + "url": "https://github.com/api-platform/create-client" }, { "repo": "docs", - "contributions": 9, + "contributions": 5, "url": "https://github.com/api-platform/docs" } ], - "rank": 74, + "rank": 75, "contributions": 12, - "avatar_url": "https://avatars.githubusercontent.com/u/9022239?v=4", - "bio": "DevOps, Google Cloud, Google Workspace, e-business solutions, SaaS, PHP (Symfony, Api-platform), TypeScript, (Node.js, Next.js, NestJS, React)", - "name": "David DIVERRES", - "location": "Paris/Nantes/Bordeaux (France)", - "company": "Self-employed ⭐ @comexpertise @groupeonepoint", - "blog": "https://www.linkedin.com/in/daviddiverres/" + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/1257968?v=4", + "bio": null, + "name": "Grégory Copin", + "location": "Lille", + "company": "Les-Tilleuls.coop", + "blog": "http://www.les-tilleuls.coop" }, { - "login": "divine", + "login": "Nek-", "repos": [ { - "repo": "api-platform", - "contributions": 1, - "url": "https://github.com/api-platform/api-platform" - }, - { - "repo": "mercure", - "contributions": 5, - "url": "https://github.com/dunglas/mercure" + "repo": "metadata", + "contributions": 3, + "url": "https://github.com/api-platform/metadata" }, { "repo": "serializer", @@ -3394,51 +3488,46 @@ }, { "repo": "core", - "contributions": 3, + "contributions": 7, "url": "https://github.com/api-platform/core" }, { "repo": "docs", - "contributions": 2, + "contributions": 1, "url": "https://github.com/api-platform/docs" } ], - "rank": 75, + "rank": 76, "contributions": 12, - "avatar_url": "https://avatars.githubusercontent.com/u/48183131?v=4", - "bio": "Mars", - "name": "Divine", - "location": "Mars", - "company": null, - "blog": "" + "avatar_url": "https://avatars.githubusercontent.com/u/972456?v=4", + "bio": "Weird interesting stuff. Also Swag industries.", + "name": "Maxime Veber", + "location": "Paris, France", + "company": "@dayuseio", + "blog": "https://swag.industries" }, { - "login": "jderusse", + "login": "comxd", "repos": [ { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "mercure", - "contributions": 6, - "url": "https://github.com/dunglas/mercure" + "repo": "admin", + "contributions": 3, + "url": "https://github.com/api-platform/admin" }, { - "repo": "core", - "contributions": 5, - "url": "https://github.com/api-platform/core" + "repo": "docs", + "contributions": 9, + "url": "https://github.com/api-platform/docs" } ], - "rank": 76, + "rank": 77, "contributions": 12, - "avatar_url": "https://avatars.githubusercontent.com/u/578547?v=4", - "bio": "@symfony Core contributor", - "name": "Jérémy Derussé", - "location": "Paris, France", - "company": "Blackfire", - "blog": "" + "avatar_url": "https://avatars.githubusercontent.com/u/9022239?v=4", + "bio": "DevOps, Google Cloud, Google Workspace, e-business solutions, SaaS, PHP (Symfony, Api-platform), TypeScript, (Node.js, Next.js, NestJS, React)", + "name": "David DIVERRES", + "location": "Paris/Nantes/Bordeaux (France)", + "company": "Self-employed ⭐ @comexpertise @groupeonepoint", + "blog": "https://www.linkedin.com/in/daviddiverres/" }, { "login": "jmontoyaa", @@ -3459,7 +3548,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 77, + "rank": 78, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/158935?v=4", "bio": "Senior Backend Engineer", @@ -3487,7 +3576,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 78, + "rank": 79, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/19575068?v=4", "bio": "Developer @unleashedtech 🍁 I do #symfony #react #laravel? #php #web", @@ -3515,7 +3604,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 79, + "rank": 80, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/1462821?v=4", "bio": null, @@ -3525,47 +3614,56 @@ "blog": "https://ackwa.fr" }, { - "login": "ttskch", + "login": "slax57", "repos": [ { - "repo": "openapi", - "contributions": 1, - "url": "https://github.com/api-platform/openapi" - }, - { - "repo": "metadata", - "contributions": 1, - "url": "https://github.com/api-platform/metadata" + "repo": "admin", + "contributions": 11, + "url": "https://github.com/api-platform/admin" }, { - "repo": "symfony", + "repo": "docs", "contributions": 1, - "url": "https://github.com/api-platform/symfony" - }, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 81, + "contributions": 12, + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/14542336?v=4", + "bio": null, + "name": "Jean-Baptiste Kaiser", + "location": "France", + "company": "Marmelab", + "blog": "" + }, + { + "login": "toby-griffiths", + "repos": [ { - "repo": "serializer", - "contributions": 1, - "url": "https://github.com/api-platform/serializer" + "repo": "schema-generator", + "contributions": 2, + "url": "https://github.com/api-platform/schema-generator" }, { - "repo": "core", - "contributions": 6, - "url": "https://github.com/api-platform/core" + "repo": "api-platform", + "contributions": 3, + "url": "https://github.com/api-platform/api-platform" }, { "repo": "docs", - "contributions": 2, + "contributions": 7, "url": "https://github.com/api-platform/docs" } ], - "rank": 80, + "rank": 82, "contributions": 12, - "avatar_url": "https://avatars.githubusercontent.com/u/4360663?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4817007?v=4", "bio": null, - "name": "Takashi Kanemoto", - "location": "Kobe, Hyogo, Japan", - "company": "Kannade Inc.", - "blog": "https://ttskch.com" + "name": "Toby Griffiths", + "location": "Manchester, UK", + "company": "Cubic Mushroom", + "blog": "http://tobyg.net" }, { "login": "valentindrdt", @@ -3586,7 +3684,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 81, + "rank": 83, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/181734130?v=4", "bio": null, @@ -3598,16 +3696,16 @@ { "login": "bpolaszek", "repos": [ - { - "repo": "api-doc-parser", - "contributions": 3, - "url": "https://github.com/api-platform/api-doc-parser" - }, { "repo": "website", "contributions": 1, "url": "https://github.com/api-platform/website" }, + { + "repo": "api-doc-parser", + "contributions": 3, + "url": "https://github.com/api-platform/api-doc-parser" + }, { "repo": "http-cache", "contributions": 1, @@ -3629,7 +3727,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 82, + "rank": 84, "contributions": 11, "avatar_url": "https://avatars.githubusercontent.com/u/5569077?v=4", "bio": "Software developer using Web technologies.", @@ -3662,7 +3760,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 83, + "rank": 85, "contributions": 11, "avatar_url": "https://avatars.githubusercontent.com/u/99648541?v=4", "bio": "Lead dev at @coopTilleuls ", @@ -3675,14 +3773,14 @@ "login": "fzaninotto", "repos": [ { - "repo": "demo", + "repo": "api-platform", "contributions": 1, - "url": "https://github.com/api-platform/demo" + "url": "https://github.com/api-platform/api-platform" }, { - "repo": "api-platform", + "repo": "demo", "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/demo" }, { "repo": "admin", @@ -3690,7 +3788,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 84, + "rank": 86, "contributions": 11, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/99944?v=4", @@ -3708,23 +3806,23 @@ "contributions": 1, "url": "https://github.com/api-platform/metadata" }, - { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" - }, { "repo": "serializer", "contributions": 3, "url": "https://github.com/api-platform/serializer" }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, { "repo": "core", "contributions": 6, "url": "https://github.com/api-platform/core" } ], - "rank": 85, + "rank": 87, "contributions": 11, "avatar_url": "https://avatars.githubusercontent.com/u/449555?v=4", "bio": null, @@ -3752,7 +3850,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 86, + "rank": 88, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/1584563?v=4", "bio": "Makes all your codebase go purr. 🐈", @@ -3761,6 +3859,44 @@ "company": "@la-fourche", "blog": "https://matthieuharle.com" }, + { + "login": "aegypius", + "repos": [ + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "documentation", + "contributions": 1, + "url": "https://github.com/api-platform/documentation" + }, + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" + }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 6, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 89, + "contributions": 10, + "avatar_url": "https://avatars.githubusercontent.com/u/25710?v=4", + "bio": null, + "name": "Nicolas LAURENT", + "location": "Nantes, France", + "company": "@coopTilleuls", + "blog": "https://aegypius.com" + }, { "login": "alexislefebvre", "repos": [ @@ -3780,13 +3916,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 87, + "rank": 90, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/2071331?v=4", "bio": "Former bioinformatician, @symfony enthusiast, former Web developer at @Troopers", "name": "Alexis Lefebvre", "location": "Nantes, France", - "company": "@Troopers", + "company": null, "blog": "https://alexislefebvre.com/" }, { @@ -3803,7 +3939,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 88, + "rank": 91, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/2386728?v=4", "bio": null, @@ -3826,7 +3962,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 89, + "rank": 92, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/1872952?v=4", "bio": null, @@ -3849,7 +3985,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 90, + "rank": 93, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/657779?v=4", "bio": "right proper lad", @@ -3882,7 +4018,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 91, + "rank": 94, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/5230489?v=4", "bio": "Software engineer in Eventival", @@ -3915,7 +4051,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 92, + "rank": 95, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/144858?v=4", "bio": "Polyglot Developer. Creator of @SolidInvoice. Maintainer of @Payum. Working on OSS at @SolidWorx ", @@ -3933,7 +4069,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 93, + "rank": 96, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/8024246?v=4", "bio": "Marketing & Communications manager @coopTilleuls", @@ -3956,11 +4092,11 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 94, + "rank": 97, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/35468476?v=4", - "bio": "Passionate about new web technologies of all kinds", - "name": "Thibault G.", + "bio": "\"Simplicity is the ultimate sophistication\"\r\nLeonardo da Vinci", + "name": "Thibault Gattolliat", "location": "Switzerland", "company": "Predige SA", "blog": "https://thibaultg.info/" @@ -3969,24 +4105,58 @@ "login": "abdounikarim", "repos": [ { - "repo": "admin", + "repo": "admin", + "contributions": 1, + "url": "https://github.com/api-platform/admin" + }, + { + "repo": "docs", + "contributions": 8, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 98, + "contributions": 9, + "avatar_url": "https://avatars.githubusercontent.com/u/15892761?v=4", + "bio": null, + "name": "Abdouni Abdelkarim", + "location": "Vendée / France", + "company": "@sensiolabs", + "blog": "https://abdounikarim.com" + }, + { + "login": "bcobzh", + "repos": [ + { + "repo": "website", + "contributions": 2, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "api-doc-parser", + "contributions": 3, + "url": "https://github.com/api-platform/api-doc-parser" + }, + { + "repo": "create-client", "contributions": 1, - "url": "https://github.com/api-platform/admin" + "url": "https://github.com/api-platform/create-client" }, { - "repo": "docs", - "contributions": 8, - "url": "https://github.com/api-platform/docs" + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" } ], - "rank": 95, + "rank": 99, "contributions": 9, - "avatar_url": "https://avatars.githubusercontent.com/u/15892761?v=4", + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/49025717?v=4", "bio": null, - "name": "Abdouni Abdelkarim", - "location": "Vendée / France", - "company": "@sensiolabs", - "blog": "https://abdounikarim.com" + "name": null, + "location": null, + "company": null, + "blog": "" }, { "login": "djhi", @@ -3997,7 +4167,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 96, + "rank": 100, "contributions": 9, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/1122076?v=4", @@ -4021,7 +4191,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 97, + "rank": 101, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/1264033?v=4", "bio": "Angular, Contao & Symfony", @@ -4034,14 +4204,14 @@ "login": "insekticid", "repos": [ { - "repo": "create-client", + "repo": "api-platform", "contributions": 1, - "url": "https://github.com/api-platform/create-client" + "url": "https://github.com/api-platform/api-platform" }, { - "repo": "api-platform", + "repo": "create-client", "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/create-client" }, { "repo": "metadata", @@ -4059,7 +4229,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 98, + "rank": 102, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/177340?v=4", "bio": "👌20y+ PHP DEV, Docker, K8s, Nuxt.js\r\n🍔https://www.recepty.eu\r\n_________________________\r\nhttps://exploit.cz/.env\r\nhttps://linkedin.com/in/insekticid", @@ -4072,14 +4242,14 @@ "login": "nawel-les-tilleuls", "repos": [ { - "repo": "symfony", + "repo": "serializer", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/serializer" }, { - "repo": "serializer", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/api-platform/serializer" + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -4087,7 +4257,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 99, + "rank": 103, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/109156065?v=4", "bio": null, @@ -4115,7 +4285,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 100, + "rank": 104, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/6079305?v=4", "bio": null, @@ -4125,49 +4295,25 @@ "blog": "" }, { - "login": "slax57", + "login": "thcolin", "repos": [ { - "repo": "admin", - "contributions": 8, - "url": "https://github.com/api-platform/admin" - }, - { - "repo": "docs", + "repo": "demo", "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 101, - "contributions": 9, - "isCoreTeam": true, - "avatar_url": "https://avatars.githubusercontent.com/u/14542336?v=4", - "bio": null, - "name": "Jean-Baptiste Kaiser", - "location": "France", - "company": "Marmelab", - "blog": "" - }, - { - "login": "thcolin", - "repos": [ + "url": "https://github.com/api-platform/demo" + }, { "repo": "api-doc-parser", "contributions": 2, "url": "https://github.com/api-platform/api-doc-parser" }, - { - "repo": "demo", - "contributions": 1, - "url": "https://github.com/api-platform/demo" - }, { "repo": "admin", "contributions": 6, "url": "https://github.com/api-platform/admin" } ], - "rank": 102, + "rank": 105, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/9131757?v=4", "bio": "🏴 & Javascript", @@ -4195,7 +4341,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 103, + "rank": 106, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/2320425?v=4", "bio": null, @@ -4205,65 +4351,55 @@ "blog": "https://xavierleune.tech/" }, { - "login": "Jibbarth", + "login": "DavidBennettUK", "repos": [ { - "repo": "core", + "repo": "graphql", "contributions": 2, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "core", + "contributions": 4, "url": "https://github.com/api-platform/core" }, { "repo": "docs", - "contributions": 6, + "contributions": 2, "url": "https://github.com/api-platform/docs" } ], - "rank": 104, + "rank": 107, "contributions": 8, - "avatar_url": "https://avatars.githubusercontent.com/u/3168281?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3920550?v=4", "bio": null, - "name": "Jibé Barth", - "location": "Bordeaux", - "company": null, - "blog": "https://jibébarth.fr" + "name": "David Bennett", + "location": "Birmingham, West Midlands", + "company": "Codevate", + "blog": "http://www.codevate.com" }, { - "login": "aegypius", + "login": "Jibbarth", "repos": [ - { - "repo": "graphql", - "contributions": 1, - "url": "https://github.com/api-platform/graphql" - }, - { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "documentation", - "contributions": 1, - "url": "https://github.com/api-platform/documentation" - }, - { - "repo": "mercure", - "contributions": 1, - "url": "https://github.com/dunglas/mercure" - }, { "repo": "core", - "contributions": 4, + "contributions": 2, "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 6, + "url": "https://github.com/api-platform/docs" } ], - "rank": 105, + "rank": 108, "contributions": 8, - "avatar_url": "https://avatars.githubusercontent.com/u/25710?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/3168281?v=4", "bio": null, - "name": "Nicolas LAURENT", - "location": "Nantes, France", - "company": "@coopTilleuls", - "blog": "https://aegypius.com" + "name": "Jibé Barth", + "location": "Bordeaux", + "company": null, + "blog": "https://jibébarth.fr" }, { "login": "cedriclombardot", @@ -4274,7 +4410,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 106, + "rank": 109, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/651484?v=4", "bio": null, @@ -4302,7 +4438,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 107, + "rank": 110, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/417823?v=4", "bio": null, @@ -4335,7 +4471,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 108, + "rank": 111, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/1068177?v=4", "bio": null, @@ -4347,16 +4483,16 @@ { "login": "jockos", "repos": [ - { - "repo": "api-platform", - "contributions": 1, - "url": "https://github.com/api-platform/api-platform" - }, { "repo": "website", "contributions": 3, "url": "https://github.com/api-platform/website" }, + { + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "json-schema", "contributions": 1, @@ -4368,7 +4504,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 109, + "rank": 112, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/14978189?v=4", "bio": null, @@ -4401,7 +4537,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 110, + "rank": 113, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/1202965?v=4", "bio": "@coopTilleuls \r\n@larriereguichet ", @@ -4424,10 +4560,10 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 111, + "rank": 114, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/3356740?v=4", - "bio": "VP of Engineering\r\n@eliosfund @nitroenergy ", + "bio": "Senior SWE @leasecake", "name": "Jon Erickson", "location": "Powell Butte, USA", "company": "Deschutes Design Group LLC", @@ -4442,13 +4578,41 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 112, + "rank": 115, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/53676?v=4", "bio": null, "name": "Kevin Saliou", "location": "Nantes, France", - "company": "@ClapClap-app ", + "company": null, + "blog": "" + }, + { + "login": "loic425", + "repos": [ + { + "repo": "symfony", + "contributions": 3, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 4, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 116, + "contributions": 8, + "avatar_url": "https://avatars.githubusercontent.com/u/8329789?v=4", + "bio": null, + "name": "Loïc Frémont", + "location": "Rennes, France", + "company": "@akawaka", "blog": "" }, { @@ -4460,7 +4624,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 113, + "rank": 117, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/9930093?v=4", "bio": "Digital Product Creator, Artist, Freelancer", @@ -4503,7 +4667,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 114, + "rank": 118, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/1231441?v=4", "bio": "Enterprise Solution Architect at @nubity", @@ -4531,7 +4695,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 115, + "rank": 119, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/6237786?v=4", "bio": null, @@ -4559,7 +4723,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 116, + "rank": 120, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/534550?v=4", "bio": "Lead Software Engineer at @Netpositive ", @@ -4571,101 +4735,40 @@ { "login": "valentin-dassonville", "repos": [ - { - "repo": "create-client", - "contributions": 1, - "url": "https://github.com/api-platform/create-client" - }, { "repo": "api-doc-parser", "contributions": 1, "url": "https://github.com/api-platform/api-doc-parser" }, { - "repo": "admin", - "contributions": 1, - "url": "https://github.com/api-platform/admin" - }, - { - "repo": "laravel", - "contributions": 1, - "url": "https://github.com/api-platform/laravel" - }, - { - "repo": "core", - "contributions": 4, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 117, - "contributions": 8, - "avatar_url": "https://avatars.githubusercontent.com/u/129871973?v=4", - "bio": null, - "name": "Valentin Dassonville", - "location": "Lille, France", - "company": null, - "blog": "" - }, - { - "login": "BeyerJC", - "repos": [ - { - "repo": "api-platform", - "contributions": 3, - "url": "https://github.com/api-platform/api-platform" - }, - { - "repo": "openapi", + "repo": "create-client", "contributions": 1, - "url": "https://github.com/api-platform/openapi" + "url": "https://github.com/api-platform/create-client" }, { - "repo": "core", + "repo": "admin", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/admin" }, { - "repo": "docs", - "contributions": 2, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 118, - "contributions": 7, - "avatar_url": "https://avatars.githubusercontent.com/u/34127121?v=4", - "bio": null, - "name": "Jan Christoph Beyer", - "location": "Cologne, Germany", - "company": "TQGG", - "blog": "" - }, - { - "login": "DavidBennettUK", - "repos": [ - { - "repo": "graphql", - "contributions": 2, - "url": "https://github.com/api-platform/graphql" + "repo": "laravel", + "contributions": 1, + "url": "https://github.com/api-platform/laravel" }, { "repo": "core", - "contributions": 3, + "contributions": 4, "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 2, - "url": "https://github.com/api-platform/docs" } ], - "rank": 119, - "contributions": 7, - "avatar_url": "https://avatars.githubusercontent.com/u/3920550?v=4", + "rank": 121, + "contributions": 8, + "avatar_url": "https://avatars.githubusercontent.com/u/129871973?v=4", "bio": null, - "name": "David Bennett", - "location": "Birmingham, West Midlands", - "company": "Codevate", - "blog": "http://www.codevate.com" + "name": "Valentin Dassonville", + "location": "Lille, France", + "company": null, + "blog": "" }, { "login": "MLKiiwy", @@ -4681,7 +4784,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 120, + "rank": 122, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/619217?v=4", "bio": "Solution maker. \r\n16 years of experience in the Tech industry and expertise in the TypeScript/React ecosystem.\r\nMaker of @alistigo ", @@ -4709,7 +4812,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 121, + "rank": 123, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/57361575?v=4", "bio": null, @@ -4732,7 +4835,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 122, + "rank": 124, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/10145362?v=4", "bio": null, @@ -4741,44 +4844,6 @@ "company": null, "blog": "" }, - { - "login": "NathanPesneau", - "repos": [ - { - "repo": "laravel", - "contributions": 2, - "url": "https://github.com/api-platform/laravel" - }, - { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "serializer", - "contributions": 1, - "url": "https://github.com/api-platform/serializer" - }, - { - "repo": "core", - "contributions": 2, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 123, - "contributions": 7, - "avatar_url": "https://avatars.githubusercontent.com/u/129308244?v=4", - "bio": null, - "name": "Nathan Pesneau", - "location": null, - "company": null, - "blog": "" - }, { "login": "ViPErCZ", "repos": [ @@ -4798,7 +4863,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 124, + "rank": 125, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/1502711?v=4", "bio": "PHP developer", @@ -4826,7 +4891,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 125, + "rank": 126, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/19672303?v=4", "bio": "PHP/Symfony enthusiast. Backend Engineer. CTF player.", @@ -4844,7 +4909,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 126, + "rank": 127, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/393346?v=4", "bio": "CTO @ benerail", @@ -4853,35 +4918,6 @@ "company": "Bas.Peete.rs", "blog": "https://bas.peete.rs" }, - { - "login": "bcobzh", - "repos": [ - { - "repo": "create-client", - "contributions": 1, - "url": "https://github.com/api-platform/create-client" - }, - { - "repo": "api-doc-parser", - "contributions": 3, - "url": "https://github.com/api-platform/api-doc-parser" - }, - { - "repo": "core", - "contributions": 3, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 127, - "contributions": 7, - "isCoreTeam": true, - "avatar_url": "https://avatars.githubusercontent.com/u/49025717?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, { "login": "cedricziel", "repos": [ @@ -5007,6 +5043,11 @@ { "login": "jfthuillier", "repos": [ + { + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" + }, { "repo": "api-doc-parser", "contributions": 1, @@ -5016,11 +5057,6 @@ "repo": "admin", "contributions": 5, "url": "https://github.com/api-platform/admin" - }, - { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" } ], "rank": 132, @@ -5036,16 +5072,16 @@ { "login": "luca-nardelli", "repos": [ - { - "repo": "create-client", - "contributions": 5, - "url": "https://github.com/api-platform/create-client" - }, { "repo": "api-doc-parser", "contributions": 1, "url": "https://github.com/api-platform/api-doc-parser" }, + { + "repo": "create-client", + "contributions": 5, + "url": "https://github.com/api-platform/create-client" + }, { "repo": "docs", "contributions": 1, @@ -5168,6 +5204,34 @@ "company": null, "blog": "" }, + { + "login": "rvanlaak", + "repos": [ + { + "repo": "api-platform", + "contributions": 2, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 3, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 138, + "contributions": 7, + "avatar_url": "https://avatars.githubusercontent.com/u/2707563?v=4", + "bio": "🍻 Brewing BeerCollab | (Exited) Tech Founder | Symfony Certified Developer", + "name": "Richard van Laak", + "location": "Amsterdam, Netherlands", + "company": "BeerCollab", + "blog": "" + }, { "login": "tacman", "repos": [ @@ -5192,7 +5256,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 138, + "rank": 139, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/619585?v=4", "bio": "open source enthusiast, mostly with Symfony. ", @@ -5220,7 +5284,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 139, + "rank": 140, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/3897363?v=4", "bio": "PHP & Symfony dev, Sport-Finder Founder", @@ -5229,6 +5293,34 @@ "company": "SportFinder", "blog": "http://www.sport-finder.com" }, + { + "login": "BeyerJC", + "repos": [ + { + "repo": "api-platform", + "contributions": 3, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "openapi", + "contributions": 1, + "url": "https://github.com/api-platform/openapi" + }, + { + "repo": "docs", + "contributions": 2, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 141, + "contributions": 6, + "avatar_url": "https://avatars.githubusercontent.com/u/34127121?v=4", + "bio": null, + "name": "Jan Christoph Beyer", + "location": "Cologne, Germany", + "company": "TQGG", + "blog": "" + }, { "login": "ERuban", "repos": [ @@ -5248,7 +5340,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 140, + "rank": 142, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/13186130?v=4", "bio": null, @@ -5271,7 +5363,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 141, + "rank": 143, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/6140884?v=4", "bio": null, @@ -5284,9 +5376,9 @@ "login": "Renrhaf", "repos": [ { - "repo": "demo", + "repo": "website", "contributions": 1, - "url": "https://github.com/api-platform/demo" + "url": "https://github.com/api-platform/website" }, { "repo": "api-platform", @@ -5294,9 +5386,9 @@ "url": "https://github.com/api-platform/api-platform" }, { - "repo": "website", + "repo": "demo", "contributions": 1, - "url": "https://github.com/api-platform/website" + "url": "https://github.com/api-platform/demo" }, { "repo": "elasticsearch", @@ -5309,7 +5401,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 142, + "rank": 144, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/690629?v=4", "bio": "Web developer & traveler. I also write and take photos sometimes.\r\n\r\n", @@ -5322,9 +5414,9 @@ "login": "StrikerRUS", "repos": [ { - "repo": "api-doc-parser", - "contributions": 1, - "url": "https://github.com/api-platform/api-doc-parser" + "repo": "api-platform", + "contributions": 2, + "url": "https://github.com/api-platform/api-platform" }, { "repo": "demo", @@ -5332,12 +5424,12 @@ "url": "https://github.com/api-platform/demo" }, { - "repo": "api-platform", - "contributions": 2, - "url": "https://github.com/api-platform/api-platform" + "repo": "api-doc-parser", + "contributions": 1, + "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 143, + "rank": 145, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/25141164?v=4", "bio": null, @@ -5370,7 +5462,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 144, + "rank": 146, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/11313131?v=4", "bio": "PHP / Symfony developer", @@ -5393,7 +5485,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 145, + "rank": 147, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/547706?v=4", "bio": "Salarié associé chez @incaya depuis 2022.", @@ -5406,14 +5498,14 @@ "login": "azjezz", "repos": [ { - "repo": "symfony", + "repo": "mercure", "contributions": 2, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/dunglas/mercure" }, { - "repo": "mercure", + "repo": "symfony", "contributions": 2, - "url": "https://github.com/dunglas/mercure" + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -5421,11 +5513,11 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 146, + "rank": 148, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/29315886?v=4", "bio": "39AC CCA4 FD30 0D04 C840 6EB3 B00E 0A46 B3F1 C157", - "name": "Saif Eddin Gmati", + "name": "Seifeddine Gmati", "location": "Tunisia", "company": "@Carthage-Software", "blog": "" @@ -5439,7 +5531,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 147, + "rank": 149, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/5176335?v=4", "bio": null, @@ -5457,7 +5549,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 148, + "rank": 150, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/1539731?v=4", "bio": null, @@ -5480,7 +5572,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 149, + "rank": 151, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/15458329?v=4", "bio": "Red team operator for @Orange-Cyberdefense \r\nCreator of @matro7sh & michmich.eu", @@ -5503,7 +5595,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 150, + "rank": 152, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/2146169?v=4", "bio": null, @@ -5531,7 +5623,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 151, + "rank": 153, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/1675033?v=4", "bio": "Fullstack web developer and DevOps", @@ -5554,7 +5646,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 152, + "rank": 154, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/345754?v=4", "bio": "PHP/Symfony dev, into frontend as well.", @@ -5563,34 +5655,6 @@ "company": null, "blog": "http://blog.kixlive.ru" }, - { - "login": "loic425", - "repos": [ - { - "repo": "symfony", - "contributions": 2, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "core", - "contributions": 3, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 153, - "contributions": 6, - "avatar_url": "https://avatars.githubusercontent.com/u/8329789?v=4", - "bio": null, - "name": "Loïc Frémont", - "location": "Rennes, France", - "company": "@akawaka", - "blog": "" - }, { "login": "mbrodala", "repos": [ @@ -5610,7 +5674,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 154, + "rank": 155, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/5037116?v=4", "bio": null, @@ -5638,17 +5702,17 @@ "url": "https://github.com/api-platform/ramsey-uuid" }, { - "repo": "symfony", + "repo": "serializer", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/serializer" }, { - "repo": "serializer", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/api-platform/serializer" + "url": "https://github.com/api-platform/symfony" } ], - "rank": 155, + "rank": 156, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/46324298?v=4", "bio": null, @@ -5681,7 +5745,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 156, + "rank": 157, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/243674?v=4", "bio": "Submitting features and bug(fixes) @symfony, to make it always faster, easier to use and better designed, uncompromising.\r\n@ESPCI_Alumni engineer.", @@ -5690,34 +5754,6 @@ "company": "@SymfonyCorp", "blog": "" }, - { - "login": "oleg-andreyev", - "repos": [ - { - "repo": "admin", - "contributions": 2, - "url": "https://github.com/api-platform/admin" - }, - { - "repo": "core", - "contributions": 3, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 157, - "contributions": 6, - "avatar_url": "https://avatars.githubusercontent.com/u/1244112?v=4", - "bio": "CTO | Principal Software Architect | \r\n10+ years experience in Web development.\r\n", - "name": "Oleg Andreyev", - "location": "Riga, Latvia", - "company": null, - "blog": "" - }, { "login": "tienvx", "repos": [ @@ -5954,14 +5990,14 @@ "url": "https://github.com/api-platform/schema-generator" }, { - "repo": "symfony", + "repo": "serializer", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/serializer" }, { - "repo": "serializer", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/api-platform/serializer" + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -6126,14 +6162,9 @@ "login": "clementtalleu", "repos": [ { - "repo": "api-doc-parser", - "contributions": 2, - "url": "https://github.com/api-platform/api-doc-parser" - }, - { - "repo": "demo", + "repo": "website", "contributions": 1, - "url": "https://github.com/api-platform/demo" + "url": "https://github.com/api-platform/website" }, { "repo": "api-platform", @@ -6141,9 +6172,14 @@ "url": "https://github.com/api-platform/api-platform" }, { - "repo": "website", + "repo": "demo", "contributions": 1, - "url": "https://github.com/api-platform/website" + "url": "https://github.com/api-platform/demo" + }, + { + "repo": "api-doc-parser", + "contributions": 2, + "url": "https://github.com/api-platform/api-doc-parser" } ], "rank": 174, @@ -6337,7 +6373,7 @@ "name": "Desjardins Jérôme", "location": "Perpignan", "company": "@Ornikar", - "blog": "http://jewome62.eu" + "blog": "" }, { "login": "jpdz8005", @@ -6413,6 +6449,24 @@ "company": "Freelance", "blog": "" }, + { + "login": "nextpageblog", + "repos": [ + { + "repo": "docs", + "contributions": 5, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 186, + "contributions": 5, + "avatar_url": "https://avatars.githubusercontent.com/u/92269411?v=4", + "bio": "Coming soon.", + "name": "Kévin", + "location": null, + "company": null, + "blog": "" + }, { "login": "nightio", "repos": [ @@ -6432,7 +6486,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 186, + "rank": 187, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/36849548?v=4", "bio": null, @@ -6442,20 +6496,25 @@ "blog": "" }, { - "login": "nxtpge", + "login": "oleg-andreyev", "repos": [ { - "repo": "docs", - "contributions": 5, - "url": "https://github.com/api-platform/docs" + "repo": "admin", + "contributions": 2, + "url": "https://github.com/api-platform/admin" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" } ], - "rank": 187, + "rank": 188, "contributions": 5, - "avatar_url": "https://avatars.githubusercontent.com/u/92269411?v=4", - "bio": null, - "name": "Nextpage", - "location": null, + "avatar_url": "https://avatars.githubusercontent.com/u/1244112?v=4", + "bio": "CTO | Principal Software Architect | \r\n10+ years experience in Web development.\r\n", + "name": "Oleg Andreyev", + "location": "Riga, Latvia", "company": null, "blog": "" }, @@ -6468,7 +6527,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 188, + "rank": 189, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/1389984?v=4", "bio": null, @@ -6491,7 +6550,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 189, + "rank": 190, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/42591123?v=4", "bio": null, @@ -6514,7 +6573,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 190, + "rank": 191, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/1102197?v=4", "bio": null, @@ -6542,7 +6601,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 191, + "rank": 192, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/10944808?v=4", "bio": null, @@ -6575,7 +6634,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 192, + "rank": 193, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/80783376?v=4", "bio": null, @@ -6584,34 +6643,6 @@ "company": "Les-Tilleuls.coop", "blog": "" }, - { - "login": "rvanlaak", - "repos": [ - { - "repo": "api-platform", - "contributions": 2, - "url": "https://github.com/api-platform/api-platform" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 2, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 193, - "contributions": 5, - "avatar_url": "https://avatars.githubusercontent.com/u/2707563?v=4", - "bio": "🍻 Brewing BeerCollab | (Exited) Tech Founder | Symfony Certified Developer", - "name": "Richard van Laak", - "location": "Amsterdam, Netherlands", - "company": "BeerCollab", - "blog": "" - }, { "login": "simondaigre", "repos": [ @@ -6635,6 +6666,40 @@ "company": null, "blog": "https://simon.daig.re/" }, + { + "login": "slim", + "repos": [ + { + "repo": "demo", + "contributions": 1, + "url": "https://github.com/api-platform/demo" + }, + { + "repo": "api-doc-parser", + "contributions": 1, + "url": "https://github.com/api-platform/api-doc-parser" + }, + { + "repo": "admin", + "contributions": 2, + "url": "https://github.com/api-platform/admin" + }, + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" + } + ], + "rank": 195, + "contributions": 5, + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/1479?v=4", + "bio": null, + "name": "Slim Amamou", + "location": "Tunis", + "company": "http://supplytensor.com", + "blog": "http://NoMemorySpace.wordpress.com" + }, { "login": "tuanphpvn", "repos": [ @@ -6649,7 +6714,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 195, + "rank": 196, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/7608580?v=4", "bio": "A PHP Developer", @@ -6677,7 +6742,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 196, + "rank": 197, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/517753?v=4", "bio": null, @@ -6700,7 +6765,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 197, + "rank": 198, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/167557?v=4", "bio": null, @@ -6718,7 +6783,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 198, + "rank": 199, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/26602940?v=4", "bio": null, @@ -6730,28 +6795,56 @@ { "login": "Chris53897", "repos": [ + { + "repo": "api-platform", + "contributions": 2, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "demo", "contributions": 1, "url": "https://github.com/api-platform/demo" }, { - "repo": "api-platform", - "contributions": 2, - "url": "https://github.com/api-platform/api-platform" + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + } + ], + "rank": 200, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/7104259?v=4", + "bio": null, + "name": "chris", + "location": "Germany", + "company": null, + "blog": "" + }, + { + "login": "GlitchedAxiom", + "repos": [ + { + "repo": "metadata", + "contributions": 1, + "url": "https://github.com/api-platform/metadata" + }, + { + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" }, { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" } ], - "rank": 199, + "rank": 201, "contributions": 4, - "avatar_url": "https://avatars.githubusercontent.com/u/7104259?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/8281157?v=4", "bio": null, - "name": "chris", - "location": "Germany", + "name": "Marcel Malberg", + "location": null, "company": null, "blog": "" }, @@ -6769,10 +6862,10 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 200, + "rank": 202, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1985514?v=4", - "bio": "Software Architect, @doctrine MongoDB ODM maintainer, @symfony & @laravel enthusiast.", + "bio": "@doctrine MongoDB ODM maintainer, @symfony & @laravel enthusiast.", "name": "Ion Bazan", "location": "Singapore", "company": null, @@ -6797,7 +6890,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 201, + "rank": 203, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/118996061?v=4", "bio": null, @@ -6820,7 +6913,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 202, + "rank": 204, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/32396605?v=4", "bio": null, @@ -6848,7 +6941,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 203, + "rank": 205, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/5764721?v=4", "bio": "Senior software engineer ✞ Do fairies have a tale?", @@ -6871,7 +6964,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 204, + "rank": 206, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/47384001?v=4", "bio": null, @@ -6894,7 +6987,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 205, + "rank": 207, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/915273?v=4", "bio": null, @@ -6922,7 +7015,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 206, + "rank": 208, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/45849343?v=4", "bio": null, @@ -6932,35 +7025,17 @@ "blog": "" }, { - "login": "TheArrowRichard", + "login": "Spomky", "repos": [ { "repo": "schema-generator", - "contributions": 4, - "url": "https://github.com/api-platform/schema-generator" - } - ], - "rank": 207, - "contributions": 4, - "avatar_url": "https://avatars.githubusercontent.com/u/87716741?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, - { - "login": "TheCrealm", - "repos": [ - { - "repo": "metadata", "contributions": 1, - "url": "https://github.com/api-platform/metadata" + "url": "https://github.com/api-platform/schema-generator" }, { - "repo": "serializer", + "repo": "mercure", "contributions": 1, - "url": "https://github.com/api-platform/serializer" + "url": "https://github.com/dunglas/mercure" }, { "repo": "core", @@ -6968,11 +7043,29 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 208, + "rank": 209, "contributions": 4, - "avatar_url": "https://avatars.githubusercontent.com/u/8281157?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1091072?v=4", + "bio": "@symfony Core Team", + "name": "Florent Morselli", + "location": "France", + "company": "fmh", + "blog": "https://morselli.fr" + }, + { + "login": "TheArrowRichard", + "repos": [ + { + "repo": "schema-generator", + "contributions": 4, + "url": "https://github.com/api-platform/schema-generator" + } + ], + "rank": 210, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/87716741?v=4", "bio": null, - "name": "Marcel Malberg", + "name": null, "location": null, "company": null, "blog": "" @@ -6986,7 +7079,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 209, + "rank": 211, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/8103268?v=4", "bio": "IT Guy I like to code when I'm bored :\r\nFront: Angular & React\r\nBack : Symfony & WordPress", @@ -7014,7 +7107,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 210, + "rank": 212, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/34744867?v=4", "bio": "Just here to enjoy coding 🎉 ⭐ ", @@ -7037,7 +7130,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 211, + "rank": 213, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1162230?v=4", "bio": null, @@ -7065,7 +7158,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 212, + "rank": 214, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/2158235?v=4", "bio": "Yousign is hiring: https://cooptation.hellotrusty.io/rsio0kcmu5\r\n", @@ -7083,7 +7176,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 213, + "rank": 215, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/88960956?v=4", "bio": "⏳", @@ -7101,7 +7194,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 214, + "rank": 216, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/5159398?v=4", "bio": "Programmer by passion.", @@ -7119,7 +7212,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 215, + "rank": 217, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1631754?v=4", "bio": null, @@ -7147,7 +7240,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 216, + "rank": 218, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1099956?v=4", "bio": null, @@ -7165,7 +7258,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 217, + "rank": 219, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/272812?v=4", "bio": "Tech. lead @ Exotec", @@ -7188,7 +7281,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 218, + "rank": 220, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/13316080?v=4", "bio": null, @@ -7206,7 +7299,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 219, + "rank": 221, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/465798?v=4", "bio": "Manager, Customer Success Engineering @confluentinc, loves rock-climbing, playing the guitar, Japan, cats and rainbows.", @@ -7234,7 +7327,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 220, + "rank": 222, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/9316891?v=4", "bio": null, @@ -7252,7 +7345,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 221, + "rank": 223, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/436605?v=4", "bio": "TypeScript", @@ -7275,7 +7368,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 222, + "rank": 224, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/17091381?v=4", "bio": "------------´´Hack the Planet``------------ |.|.|.|.|.|.Together for a better world.|.|.|.|.|.|", @@ -7303,7 +7396,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 223, + "rank": 225, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/209225?v=4", "bio": "PHP/Symfony, Node, Golang, Python, Docker, cloud, databases, queues, performance, testing, automation.", @@ -7321,7 +7414,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 224, + "rank": 226, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/252042?v=4", "bio": "MSc @ Umons, external consultant @ European Commission, STEM lover, serial photographer, great musicologist, combo breaker, perpetual student...", @@ -7344,7 +7437,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 225, + "rank": 227, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/2741880?v=4", "bio": "Awesome web-developer ;)", @@ -7372,7 +7465,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 226, + "rank": 228, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1687685?v=4", "bio": "CTO", @@ -7381,6 +7474,34 @@ "company": null, "blog": "" }, + { + "login": "esserj", + "repos": [ + { + "repo": "metadata", + "contributions": 1, + "url": "https://github.com/api-platform/metadata" + }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 229, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/1032205?v=4", + "bio": null, + "name": "Jan Esser", + "location": null, + "company": "Inventis", + "blog": "" + }, { "login": "fabpot", "repos": [ @@ -7395,13 +7516,13 @@ "url": "https://github.com/api-platform/api-pack" } ], - "rank": 227, + "rank": 230, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/47313?v=4", - "bio": "Founder and project lead at Symfony\r\nCTO at Platform.sh\r\n", + "bio": "Founder and project lead at Symfony\r\nCTO at Upsun", "name": "Fabien Potencier", "location": "Paris, France", - "company": "Symfony/Platform.sh/Blackfire", + "company": "Symfony/Upsun", "blog": "http://fabien.potencier.org/" }, { @@ -7418,10 +7539,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 228, + "rank": 231, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/23530626?v=4", - "bio": "Serverless Web Developer\r\nAWS Community Builder", + "bio": "Cofounder @alpic-ai - all-in-one MCP hosting platform. All things serverless ❤️. AWS Community Builder", "name": "Frédéric Barthelet", "location": "Paris", "company": "@alpic-ai", @@ -7431,14 +7552,14 @@ "login": "guillemfondin", "repos": [ { - "repo": "create-client", + "repo": "api-platform", "contributions": 1, - "url": "https://github.com/api-platform/create-client" + "url": "https://github.com/api-platform/api-platform" }, { - "repo": "api-platform", + "repo": "create-client", "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/create-client" }, { "repo": "docs", @@ -7446,7 +7567,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 229, + "rank": 232, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/46321667?v=4", "bio": null, @@ -7469,7 +7590,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 230, + "rank": 233, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/6960531?v=4", "bio": null, @@ -7478,6 +7599,29 @@ "company": null, "blog": "" }, + { + "login": "jay-low", + "repos": [ + { + "repo": "create-client", + "contributions": 1, + "url": "https://github.com/api-platform/create-client" + }, + { + "repo": "docs", + "contributions": 3, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 234, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/40628500?v=4", + "bio": null, + "name": null, + "location": null, + "company": null, + "blog": "" + }, { "login": "johnnypeck", "repos": [ @@ -7497,7 +7641,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 231, + "rank": 235, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/254875?v=4", "bio": null, @@ -7530,7 +7674,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 232, + "rank": 236, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/106042?v=4", "bio": null, @@ -7543,14 +7687,14 @@ "login": "llupa", "repos": [ { - "repo": "symfony", + "repo": "serializer", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/serializer" }, { - "repo": "serializer", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/api-platform/serializer" + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -7558,7 +7702,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 233, + "rank": 237, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/41073314?v=4", "bio": null, @@ -7576,7 +7720,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 234, + "rank": 238, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/300279?v=4", "bio": null, @@ -7599,7 +7743,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 235, + "rank": 239, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/11943457?v=4", "bio": null, @@ -7622,7 +7766,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 236, + "rank": 240, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/4113819?v=4", "bio": null, @@ -7650,7 +7794,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 237, + "rank": 241, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/160332?v=4", "bio": null, @@ -7673,7 +7817,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 238, + "rank": 242, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1867132?v=4", "bio": null, @@ -7696,7 +7840,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 239, + "rank": 243, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/282388?v=4", "bio": "Software consultant. Backend developer. PHP/Postgres enthusiast. Revive Adserver dev since 2001. GrUSP founder, phpday \r\norganiser since 2003. Synth geek.", @@ -7719,7 +7863,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 240, + "rank": 244, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1247388?v=4", "bio": "Data Engineer & IA Developer 📊", @@ -7737,7 +7881,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 241, + "rank": 245, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1287855?v=4", "bio": null, @@ -7760,7 +7904,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 242, + "rank": 246, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1794571?v=4", "bio": "Software Engineer (PHP, Symfony, API Platform)", @@ -7788,7 +7932,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 243, + "rank": 247, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/11806113?v=4", "bio": "Back-end developer @coopTilleuls ", @@ -7806,14 +7950,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 244, + "rank": 248, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/11422029?v=4", "bio": "Lead Backend Engineer.\r\nPHP (Laravel / Symfony) | Node.js", "name": "Julien SCHMITT", "location": "France", - "company": "@MazarineDigital", - "blog": "https://medium.com/@julien_schmitt" + "company": null, + "blog": "https://julienschmitt.fr" }, { "login": "renan-taranto", @@ -7829,7 +7973,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 245, + "rank": 249, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/10513720?v=4", "bio": null, @@ -7847,43 +7991,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 246, - "contributions": 4, - "avatar_url": "https://avatars.githubusercontent.com/u/2885914?v=4", - "bio": null, - "name": "Ahmed Sharaf", - "location": null, - "company": null, - "blog": "" - }, - { - "login": "slim", - "repos": [ - { - "repo": "api-doc-parser", - "contributions": 1, - "url": "https://github.com/api-platform/api-doc-parser" - }, - { - "repo": "admin", - "contributions": 2, - "url": "https://github.com/api-platform/admin" - }, - { - "repo": "mercure", - "contributions": 1, - "url": "https://github.com/dunglas/mercure" - } - ], - "rank": 247, + "rank": 250, "contributions": 4, - "isCoreTeam": true, - "avatar_url": "https://avatars.githubusercontent.com/u/1479?v=4", - "bio": null, - "name": "Slim Amamou", - "location": "Tunis", - "company": "http://supplytensor.com", - "blog": "http://NoMemorySpace.wordpress.com" + "avatar_url": "https://avatars.githubusercontent.com/u/2885914?v=4", + "bio": null, + "name": "Ahmed Sharaf", + "location": null, + "company": null, + "blog": "" }, { "login": "soullivaneuh", @@ -7899,7 +8014,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 248, + "rank": 251, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1698357?v=4", "bio": null, @@ -7922,27 +8037,27 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 249, + "rank": 252, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/166079?v=4", "bio": null, "name": "Simon Stücher", "location": "Siegen, Germany", - "company": "Digistore24 GmbH", + "company": "Thomann Music", "blog": "" }, { "login": "vasilvestre", "repos": [ { - "repo": "api-platform", + "repo": "website", "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/website" }, { - "repo": "website", + "repo": "api-platform", "contributions": 1, - "url": "https://github.com/api-platform/website" + "url": "https://github.com/api-platform/api-platform" }, { "repo": "api-pack", @@ -7955,7 +8070,7 @@ "url": "https://github.com/api-platform/admin-pack" } ], - "rank": 250, + "rank": 253, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/17164385?v=4", "bio": "Lead dev at @akawaka | @Sylius key contributor 2025 Q1/Q2 |Master degree obtained in 2020 !\r\n", @@ -7978,7 +8093,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 251, + "rank": 254, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/25704924?v=4", "bio": null, @@ -8001,7 +8116,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 252, + "rank": 255, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/48998273?v=4", "bio": "Computer science student - Lille FR", @@ -8019,7 +8134,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 253, + "rank": 256, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/14289961?v=4", "bio": "PHP developer. Backendtea on twitter", @@ -8047,7 +8162,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 254, + "rank": 257, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/787653?v=4", "bio": "Fullstack dev", @@ -8056,6 +8171,24 @@ "company": "@Hupla-Travel ", "blog": "http://www.twitter.com/rogersaner" }, + { + "login": "Cafeine42", + "repos": [ + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 258, + "contributions": 3, + "avatar_url": "https://avatars.githubusercontent.com/u/8327745?v=4", + "bio": null, + "name": "Thibaut Cholley", + "location": null, + "company": null, + "blog": "" + }, { "login": "Caligone", "repos": [ @@ -8065,7 +8198,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 255, + "rank": 259, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/957477?v=4", "bio": null, @@ -8083,7 +8216,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 256, + "rank": 260, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1322557?v=4", "bio": null, @@ -8101,7 +8234,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 257, + "rank": 261, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/62953579?v=4", "bio": null, @@ -8124,7 +8257,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 258, + "rank": 262, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/8696117?v=4", "bio": null, @@ -8142,7 +8275,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 259, + "rank": 263, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/5227741?v=4", "bio": null, @@ -8170,7 +8303,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 260, + "rank": 264, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/9432727?v=4", "bio": null, @@ -8198,7 +8331,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 261, + "rank": 265, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/3933176?v=4", "bio": "I write code", @@ -8221,7 +8354,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 262, + "rank": 266, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/24977431?v=4", "bio": null, @@ -8244,7 +8377,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 263, + "rank": 267, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/995707?v=4", "bio": "Managing Director @sensiolabs-de ", @@ -8267,7 +8400,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 264, + "rank": 268, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/56270479?v=4", "bio": "Full Stack developer, specialized in Symfony and React.", @@ -8285,7 +8418,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 265, + "rank": 269, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/95493765?v=4", "bio": null, @@ -8308,7 +8441,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 266, + "rank": 270, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/239685?v=4", "bio": "Symfony enthusiast. Maintainer of Behapi, Totem.", @@ -8336,7 +8469,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 267, + "rank": 271, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/47118498?v=4", "bio": "Backend developer", @@ -8354,7 +8487,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 268, + "rank": 272, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/5579551?v=4", "bio": "PHP|Symfony fan", @@ -8372,7 +8505,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 269, + "rank": 273, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/78273358?v=4", "bio": null, @@ -8395,7 +8528,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 270, + "rank": 274, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/7464920?v=4", "bio": "Solution Architect, System Analyst, and Backend Developer\r\n", @@ -8423,7 +8556,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 271, + "rank": 275, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/17785401?v=4", "bio": null, @@ -8441,7 +8574,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 272, + "rank": 276, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/5212567?v=4", "bio": null, @@ -8459,7 +8592,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 273, + "rank": 277, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/2576509?v=4", "bio": null, @@ -8471,18 +8604,18 @@ { "login": "arnaudoisel", "repos": [ - { - "repo": "admin", - "contributions": 2, - "url": "https://github.com/api-platform/admin" - }, { "repo": "website", "contributions": 1, "url": "https://github.com/api-platform/website" + }, + { + "repo": "admin", + "contributions": 2, + "url": "https://github.com/api-platform/admin" } ], - "rank": 274, + "rank": 278, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/3639054?v=4", "bio": null, @@ -8494,18 +8627,18 @@ { "login": "arojunior", "repos": [ - { - "repo": "create-client", - "contributions": 1, - "url": "https://github.com/api-platform/create-client" - }, { "repo": "api-doc-parser", "contributions": 2, "url": "https://github.com/api-platform/api-doc-parser" + }, + { + "repo": "create-client", + "contributions": 1, + "url": "https://github.com/api-platform/create-client" } ], - "rank": 275, + "rank": 279, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/7604033?v=4", "bio": "Javascript, NodeJs, ReactJs, React-native, Redux, GraphQL, Java, PHP ... always looking for something new to learn.", @@ -8523,7 +8656,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 276, + "rank": 280, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/40235381?v=4", "bio": null, @@ -8546,7 +8679,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 277, + "rank": 281, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/29941647?v=4", "bio": null, @@ -8564,7 +8697,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 278, + "rank": 282, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/3127847?v=4", "bio": "Sometimes, they put me on Youtube.\r\nMostly I write things on Github.\r\n", @@ -8582,7 +8715,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 279, + "rank": 283, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/20707343?v=4", "bio": null, @@ -8605,7 +8738,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 280, + "rank": 284, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/202034?v=4", "bio": "Lead Software Engineer at @seatgeek. @thephpleague leadership team. Baltimore PHP co-organizer. International conference speaker.", @@ -8628,7 +8761,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 281, + "rank": 285, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/89267?v=4", "bio": "Open sourcerer", @@ -8646,7 +8779,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 282, + "rank": 286, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/656393?v=4", "bio": null, @@ -8674,7 +8807,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 283, + "rank": 287, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/3374563?v=4", "bio": null, @@ -8702,7 +8835,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 284, + "rank": 288, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1250047?v=4", "bio": null, @@ -8725,7 +8858,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 285, + "rank": 289, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/833667?v=4", "bio": null, @@ -8748,7 +8881,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 286, + "rank": 290, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/646585?v=4", "bio": "Developer, very minor PHP core contributor (okay, one implemented RFC but it still counts!), ❤ everything PHP, also versed in Node.js, Python, HTML/CSS/JS.", @@ -8766,7 +8899,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 287, + "rank": 291, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/7835928?v=4", "bio": null, @@ -8784,7 +8917,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 288, + "rank": 292, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/10513304?v=4", "bio": null, @@ -8812,7 +8945,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 289, + "rank": 293, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/8403502?v=4", "bio": null, @@ -8835,7 +8968,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 290, + "rank": 294, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/9694162?v=4", "bio": null, @@ -8858,7 +8991,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 291, + "rank": 295, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/837462?v=4", "bio": null, @@ -8881,7 +9014,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 292, + "rank": 296, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1810304?v=4", "bio": "Subscribe to my youtube channel : https://www.youtube.com/@leflug", @@ -8904,7 +9037,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 293, + "rank": 297, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/851486?v=4", "bio": null, @@ -8922,7 +9055,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 294, + "rank": 298, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1327334?v=4", "bio": "Full Stack Developer", @@ -8935,9 +9068,9 @@ "login": "helios1101", "repos": [ { - "repo": "create-client", + "repo": "website", "contributions": 1, - "url": "https://github.com/api-platform/create-client" + "url": "https://github.com/api-platform/website" }, { "repo": "api-doc-parser", @@ -8945,12 +9078,12 @@ "url": "https://github.com/api-platform/api-doc-parser" }, { - "repo": "website", + "repo": "create-client", "contributions": 1, - "url": "https://github.com/api-platform/website" + "url": "https://github.com/api-platform/create-client" } ], - "rank": 295, + "rank": 299, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/26597930?v=4", "bio": "i Failed The Turing Test !\r\n", @@ -8978,7 +9111,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 296, + "rank": 300, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1324225?v=4", "bio": "Python 3.14 & 3.15 release manager, core developer, Sovereign Tech Fellow, PSF Fellow, open-source maintainer, PEP editor, NaNoGenMo organiser", @@ -9006,7 +9139,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 297, + "rank": 301, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/9079379?v=4", "bio": null, @@ -9015,24 +9148,6 @@ "company": "HappIT", "blog": "https://jannes.io" }, - { - "login": "jay-low", - "repos": [ - { - "repo": "docs", - "contributions": 3, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 298, - "contributions": 3, - "avatar_url": "https://avatars.githubusercontent.com/u/40628500?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, { "login": "jlagneau", "repos": [ @@ -9042,7 +9157,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 299, + "rank": 302, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/7811277?v=4", "bio": null, @@ -9070,7 +9185,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 300, + "rank": 303, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/12426580?v=4", "bio": null, @@ -9088,7 +9203,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 301, + "rank": 304, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/616999?v=4", "bio": "PHP consumer", @@ -9106,7 +9221,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 302, + "rank": 305, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/10072889?v=4", "bio": null, @@ -9124,7 +9239,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 303, + "rank": 306, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1217483?v=4", "bio": null, @@ -9142,7 +9257,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 304, + "rank": 307, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/7249581?v=4", "bio": null, @@ -9165,7 +9280,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 305, + "rank": 308, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/93604120?v=4", "bio": "Developer @coopTilleuls ", @@ -9183,7 +9298,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 306, + "rank": 309, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/25065217?v=4", "bio": null, @@ -9206,7 +9321,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 307, + "rank": 310, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1706470?v=4", "bio": null, @@ -9229,7 +9344,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 308, + "rank": 311, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1254025?v=4", "bio": "French Developer #Symfony #ReactJS #Freelance #Remote join me on Discord https://discord.gg/tMDCF8RyvE", @@ -9247,12 +9362,12 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 309, + "rank": 312, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/37533818?v=4", - "bio": "Software engineer ", + "bio": "Game Developer", "name": "Mathis Boultoureau", - "location": null, + "location": "Montréal", "company": null, "blog": "https://mboultoureau.com" }, @@ -9265,7 +9380,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 310, + "rank": 313, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/33012425?v=4", "bio": null, @@ -9288,7 +9403,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 311, + "rank": 314, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/17760158?v=4", "bio": null, @@ -9311,7 +9426,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 312, + "rank": 315, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/64469669?v=4", "bio": null, @@ -9334,7 +9449,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 313, + "rank": 316, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1037526?v=4", "bio": null, @@ -9347,14 +9462,14 @@ "login": "paulandrieux", "repos": [ { - "repo": "symfony", + "repo": "mercure", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/dunglas/mercure" }, { - "repo": "mercure", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/dunglas/mercure" + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -9362,7 +9477,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 314, + "rank": 317, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1942078?v=4", "bio": "Co-founder @Troopers, i love to tailor some web apps in PHP.\r\nSDM and maintenance project manager @coopTilleuls ", @@ -9380,7 +9495,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 315, + "rank": 318, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/42961012?v=4", "bio": "Student in IT, I study Web developement (PHP,JS,Symfony,Docker)\r\nI learn IT since 2017", @@ -9398,7 +9513,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 316, + "rank": 319, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/9021747?v=4", "bio": "Hacker's thought.\r\nDon't know, but want to do.", @@ -9421,7 +9536,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 317, + "rank": 320, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1607439?v=4", "bio": null, @@ -9444,7 +9559,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 318, + "rank": 321, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/3513348?v=4", "bio": null, @@ -9467,7 +9582,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 319, + "rank": 322, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/22394917?v=4", "bio": null, @@ -9490,7 +9605,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 320, + "rank": 323, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/3097957?v=4", "bio": "Backend developer with a focus on PHP and its ecosystem since 2005", @@ -9513,10 +9628,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 321, + "rank": 324, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/2021641?v=4", - "bio": "Building PHP & web stuff at @jolicode ", + "bio": "Building stuff at @jolicode ", "name": "Loïck Piera", "location": "Paris", "company": "@jolicode ", @@ -9536,7 +9651,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 322, + "rank": 325, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/585263?v=4", "bio": "php, go & docker enjoyer", @@ -9554,7 +9669,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 323, + "rank": 326, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/53424699?v=4", "bio": null, @@ -9572,7 +9687,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 324, + "rank": 327, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/601833?v=4", "bio": null, @@ -9584,6 +9699,11 @@ { "login": "sumitkharche", "repos": [ + { + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" + }, { "repo": "api-platform", "contributions": 1, @@ -9593,14 +9713,9 @@ "repo": "admin", "contributions": 1, "url": "https://github.com/api-platform/admin" - }, - { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" } ], - "rank": 325, + "rank": 328, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/43902034?v=4", "bio": "Full Stack Developer | .NET Core | Azure | React", @@ -9623,7 +9738,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 326, + "rank": 329, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/314841?v=4", "bio": null, @@ -9641,7 +9756,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 327, + "rank": 330, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1554800?v=4", "bio": null, @@ -9664,7 +9779,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 328, + "rank": 331, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/12939091?v=4", "bio": "My goal in life is to contribute to the common good by providing useful IT solutions that respect the environment and our freedoms", @@ -9687,7 +9802,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 329, + "rank": 332, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/4489490?v=4", "bio": null, @@ -9705,7 +9820,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 330, + "rank": 333, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/8469540?v=4", "bio": "Product @OptioIncentives ", @@ -9714,6 +9829,29 @@ "company": "Optio", "blog": "https://yngve.hoiseth.net" }, + { + "login": "7-zete-7", + "repos": [ + { + "repo": "vulcain", + "contributions": 1, + "url": "https://github.com/dunglas/vulcain" + }, + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" + } + ], + "rank": 334, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/8040830?v=4", + "bio": "👨‍💻 PHP and TypeScript developer.\r\n❤️ Symfony, ReactPHP, Vue.js.\r\n🧩 Use Docker, MySQL, RabbitMQ.\r\n🕶️ Lead projects related to Asterisk, FreePBX and CRMs.", + "name": "Stanislau Kviatkouski", + "location": "Vitebsk", + "company": "@it-center-by ", + "blog": "" + }, { "login": "AMDG2", "repos": [ @@ -9723,7 +9861,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 331, + "rank": 335, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1136402?v=4", "bio": null, @@ -9746,7 +9884,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 332, + "rank": 336, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1968622?v=4", "bio": "Founder of Serendipity HQ.\r\n\r\nE-commerce is my soul - Development is my passion - Open Source is my mind.\r\n\r\nSee my organization for other interesting repos!", @@ -9764,7 +9902,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 333, + "rank": 337, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2535878?v=4", "bio": "CTO", @@ -9782,7 +9920,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 334, + "rank": 338, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/44655055?v=4", "bio": "Software Engineer", @@ -9805,7 +9943,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 335, + "rank": 339, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1506818?v=4", "bio": null, @@ -9828,7 +9966,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 336, + "rank": 340, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/12160269?v=4", "bio": null, @@ -9846,7 +9984,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 337, + "rank": 341, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8182848?v=4", "bio": null, @@ -9864,7 +10002,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 338, + "rank": 342, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/16717695?v=4", "bio": "\r\n 28 | Webdeveloper\r\n", @@ -9882,7 +10020,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 339, + "rank": 343, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/36374606?v=4", "bio": null, @@ -9905,7 +10043,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 340, + "rank": 344, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/42603404?v=4", "bio": null, @@ -9923,7 +10061,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 341, + "rank": 345, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8703922?v=4", "bio": null, @@ -9941,7 +10079,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 342, + "rank": 346, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/13310075?v=4", "bio": null, @@ -9959,7 +10097,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 343, + "rank": 347, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/977278?v=4", "bio": null, @@ -9982,7 +10120,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 344, + "rank": 348, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1122363?v=4", "bio": null, @@ -10000,7 +10138,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 345, + "rank": 349, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1729717?v=4", "bio": "Freelancer developer, designer and consultant. Most of my work is related to e-commerce.", @@ -10018,7 +10156,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 346, + "rank": 350, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/149005863?v=4", "bio": null, @@ -10027,6 +10165,29 @@ "company": null, "blog": "" }, + { + "login": "Geekimo", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 351, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/543693?v=4", + "bio": "Full stack developer, self-taught.\r\nLove REST APIs with Symfony and Nuxt. \r\nWant to know more ? Feel free to contact me.", + "name": "Morgan Abraham", + "location": "France", + "company": null, + "blog": "" + }, { "login": "Grafikart", "repos": [ @@ -10041,7 +10202,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 347, + "rank": 352, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/395137?v=4", "bio": null, @@ -10064,7 +10225,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 348, + "rank": 353, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/23635882?v=4", "bio": null, @@ -10073,6 +10234,24 @@ "company": "Adesso SE", "blog": "" }, + { + "login": "GuilhemN", + "repos": [ + { + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 354, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/6871899?v=4", + "bio": "PhD student at PQShield and University Rennes 1.\r\nI love post-quantum cryptography, software security, and privacy projects!", + "name": "Guilhem Niot", + "location": "Paris, France", + "company": "PQShield", + "blog": "https://gniot.fr" + }, { "login": "HeahDude", "repos": [ @@ -10087,7 +10266,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 349, + "rank": 355, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/10107633?v=4", "bio": "Full dev alchemist", @@ -10105,7 +10284,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 350, + "rank": 356, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/17296678?v=4", "bio": "Web developer, mainly back-end .\r\n\r\nATM @Winzana", @@ -10123,7 +10302,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 351, + "rank": 357, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8271283?v=4", "bio": null, @@ -10132,6 +10311,29 @@ "company": null, "blog": "" }, + { + "login": "Jean-Beru", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 358, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/6114779?v=4", + "bio": null, + "name": "Hubert Lenoir", + "location": null, + "company": "SensioLabs", + "blog": "" + }, { "login": "Korbeil", "repos": [ @@ -10141,7 +10343,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 352, + "rank": 359, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/944409?v=4", "bio": "Tweet @Korbeil_", @@ -10164,7 +10366,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 353, + "rank": 360, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/26943296?v=4", "bio": null, @@ -10187,7 +10389,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 354, + "rank": 361, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2912614?v=4", "bio": null, @@ -10205,7 +10407,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 355, + "rank": 362, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1922257?v=4", "bio": " PHP developer - @symfony enthusiast - Deaf 🦻 and proud to be ! - ElePHPant 🐘 farmer - stickers ⚪ and goodies collector 😍.", @@ -10228,7 +10430,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 356, + "rank": 363, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1898254?v=4", "bio": null, @@ -10246,7 +10448,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 357, + "rank": 364, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/24290882?v=4", "bio": "Lead Software Engineer @ventureleap ", @@ -10269,7 +10471,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 358, + "rank": 365, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1069028?v=4", "bio": null, @@ -10292,7 +10494,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 359, + "rank": 366, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4658966?v=4", "bio": "Development, DevOps, Security. OpenSource contributor and Founder of Gametactic.", @@ -10301,6 +10503,29 @@ "company": "@Vincit @GameTactic @FitecoGroup", "blog": "https://granö.fi" }, + { + "login": "Piairre", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 367, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/53754824?v=4", + "bio": null, + "name": "Pierre Iaccarino", + "location": null, + "company": null, + "blog": "https://pierreiaccarino.fr" + }, { "login": "Pierstoval", "repos": [ @@ -10315,7 +10540,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 360, + "rank": 368, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3369266?v=4", "bio": "🛠Full-stack Tech Lead.\r\n\r\n🕊️Free open source advocate.\r\n\r\nFreelance @Orbitaleio", @@ -10333,7 +10558,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 361, + "rank": 369, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/823281?v=4", "bio": null, @@ -10356,7 +10581,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 362, + "rank": 370, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8178740?v=4", "bio": null, @@ -10379,7 +10604,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 363, + "rank": 371, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/9056689?v=4", "bio": null, @@ -10389,27 +10614,27 @@ "blog": "" }, { - "login": "Spomky", + "login": "Stav88", "repos": [ { - "repo": "schema-generator", + "repo": "serializer", "contributions": 1, - "url": "https://github.com/api-platform/schema-generator" + "url": "https://github.com/api-platform/serializer" }, { - "repo": "mercure", + "repo": "core", "contributions": 1, - "url": "https://github.com/dunglas/mercure" + "url": "https://github.com/api-platform/core" } ], - "rank": 364, + "rank": 372, "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/1091072?v=4", - "bio": "@symfony Core Team", - "name": "Florent Morselli", - "location": "France", - "company": "fmh", - "blog": "https://morselli.fr" + "avatar_url": "https://avatars.githubusercontent.com/u/18213148?v=4", + "bio": null, + "name": null, + "location": null, + "company": null, + "blog": "" }, { "login": "Steveb-p", @@ -10420,7 +10645,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 365, + "rank": 373, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3183926?v=4", "bio": null, @@ -10438,7 +10663,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 366, + "rank": 374, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/148897?v=4", "bio": "Full stack software engineer and lead with 20+ years of experience. Architect, problem-solver, innovator with a systemic and holistic approach.", @@ -10456,13 +10681,13 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 367, + "rank": 375, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/7423905?v=4", "bio": "Certified IT Specialist for Software Development", "name": "Robin C", "location": "Germany", - "company": "@EnvolveCode @NexusCubeEU ", + "company": null, "blog": "https://nexuscube.eu/" }, { @@ -10479,7 +10704,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 368, + "rank": 376, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/14804833?v=4", "bio": "Full-Stack PHP | Symfony | JavaScript | Vuejs Web Developer with a DevOps focus", @@ -10488,52 +10713,6 @@ "company": "Freelance", "blog": "https://tangoman.io" }, - { - "login": "TimoBakx", - "repos": [ - { - "repo": "openapi", - "contributions": 1, - "url": "https://github.com/api-platform/openapi" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 369, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/839801?v=4", - "bio": "I write web applications in PHP using Symfony. He/him.", - "name": "Timo Bakx", - "location": "Hernen, Netherlands", - "company": "@LinkuNijmegen ", - "blog": "https://timobakx.dev" - }, - { - "login": "UnseenBook", - "repos": [ - { - "repo": "schema-generator", - "contributions": 1, - "url": "https://github.com/api-platform/schema-generator" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 370, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/1952805?v=4", - "bio": null, - "name": "Unseen Daan", - "location": null, - "company": null, - "blog": "" - }, { "login": "Veridis", "repos": [ @@ -10543,7 +10722,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 371, + "rank": 377, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4425529?v=4", "bio": null, @@ -10566,7 +10745,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 372, + "rank": 378, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/33687392?v=4", "bio": null, @@ -10589,7 +10768,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 373, + "rank": 379, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/26221873?v=4", "bio": null, @@ -10612,7 +10791,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 374, + "rank": 380, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/27766961?v=4", "bio": null, @@ -10630,7 +10809,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 375, + "rank": 381, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/49635295?v=4", "bio": "IT student at Polytech Paris-Saclay engineering school", @@ -10653,7 +10832,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 376, + "rank": 382, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1753742?v=4", "bio": null, @@ -10676,7 +10855,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 377, + "rank": 383, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/777096?v=4", "bio": null, @@ -10694,7 +10873,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 378, + "rank": 384, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/380026?v=4", "bio": "@rezozero and @roadiz co-founder and lead developer.", @@ -10717,7 +10896,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 379, + "rank": 385, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/118798868?v=4", "bio": null, @@ -10740,7 +10919,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 380, + "rank": 386, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/22364556?v=4", "bio": "IT Fullstack dev (symfony, react and next) with a good RabbitMQ experience.", @@ -10758,7 +10937,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 381, + "rank": 387, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4458122?v=4", "bio": null, @@ -10776,7 +10955,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 382, + "rank": 388, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/389340?v=4", "bio": "Backend dev", @@ -10799,7 +10978,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 383, + "rank": 389, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/87375506?v=4", "bio": "This is my professional GH account; my personal GH account is mohierf", @@ -10817,14 +10996,14 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 384, + "rank": 390, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1756031?v=4", "bio": null, "name": "Benjamin Knecht", "location": "Swiss", - "company": "@mmz-srf", - "blog": "https://fusaba.ch" + "company": null, + "blog": "" }, { "login": "bernard-ng", @@ -10835,10 +11014,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 385, + "rank": 391, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/31113941?v=4", - "bio": "Senior Software Engineer | Backend Technologies", + "bio": "Software Engineer | Researcher", "name": "Bernard Ngandu", "location": "DR Congo, Lubumbashi", "company": "@devscast", @@ -10853,7 +11032,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 386, + "rank": 392, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/13381361?v=4", "bio": "Masters' student @ Georgia Tech | BITS Pilani, Hyderabad Campus |\r\nInterested in breaking down stuff, building up stuff, and investigating data", @@ -10876,7 +11055,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 387, + "rank": 393, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/58093303?v=4", "bio": null, @@ -10894,7 +11073,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 388, + "rank": 394, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3290806?v=4", "bio": "PHP Developer since 2006", @@ -10912,7 +11091,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 389, + "rank": 395, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/56223?v=4", "bio": null, @@ -10930,7 +11109,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 390, + "rank": 396, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/466021?v=4", "bio": null, @@ -10953,7 +11132,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 391, + "rank": 397, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3530471?v=4", "bio": null, @@ -10971,7 +11150,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 392, + "rank": 398, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/45861541?v=4", "bio": null, @@ -10994,7 +11173,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 393, + "rank": 399, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/96260?v=4", "bio": "Father of four, PHP Developer at @combell, Zend Certified Engineer and @php-wvl enabler", @@ -11003,6 +11182,24 @@ "company": "@combell ", "blog": "http://jachim.be/" }, + { + "login": "daFish", + "repos": [ + { + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 400, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/150416?v=4", + "bio": null, + "name": "Marcus Stöhr", + "location": "Cologne, Germany", + "company": "@brainbits ", + "blog": "https://www.fmdb.net" + }, { "login": "djoos", "repos": [ @@ -11012,7 +11209,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 394, + "rank": 401, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/449510?v=4", "bio": null, @@ -11030,7 +11227,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 395, + "rank": 402, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/911705?v=4", "bio": null, @@ -11053,7 +11250,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 396, + "rank": 403, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/588564?v=4", "bio": null, @@ -11076,7 +11273,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 397, + "rank": 404, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/537253?v=4", "bio": "Senior Software Architect at Netvlies focused on quality and innovation", @@ -11094,38 +11291,15 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 398, + "rank": 405, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1876752?v=4", "bio": "DevSecOps engineer, IT secondary-school teacher, world traveller and botijos' collector", "name": "Ernesto Serrano", "location": "Las Palmas de Gran Canaria, Spain", - "company": null, + "company": "@ateeducacion ", "blog": "https://ernesto.es" }, - { - "login": "esserj", - "repos": [ - { - "repo": "metadata", - "contributions": 1, - "url": "https://github.com/api-platform/metadata" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 399, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/1032205?v=4", - "bio": null, - "name": "Jan Esser", - "location": null, - "company": "Inventis", - "blog": "" - }, { "login": "evaldaskocys", "repos": [ @@ -11140,7 +11314,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 400, + "rank": 406, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8693654?v=4", "bio": null, @@ -11163,7 +11337,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 401, + "rank": 407, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/5077020?v=4", "bio": "Full-Stack web developer (php, vuejs) & PhD student at Inria Nancy.", @@ -11186,7 +11360,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 402, + "rank": 408, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/88294294?v=4", "bio": null, @@ -11204,7 +11378,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 403, + "rank": 409, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2111701?v=4", "bio": null, @@ -11227,7 +11401,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 404, + "rank": 410, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2382015?v=4", "bio": null, @@ -11245,7 +11419,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 405, + "rank": 411, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3055667?v=4", "bio": null, @@ -11254,6 +11428,29 @@ "company": null, "blog": "" }, + { + "login": "giosh94mhz", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 412, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/5219975?v=4", + "bio": null, + "name": "Giorgio Premi", + "location": "Lake Como, Italy", + "company": null, + "blog": "" + }, { "login": "gnito-org", "repos": [ @@ -11263,7 +11460,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 406, + "rank": 413, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/70450336?v=4", "bio": null, @@ -11286,7 +11483,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 407, + "rank": 414, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/668604?v=4", "bio": null, @@ -11309,7 +11506,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 408, + "rank": 415, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/5738896?v=4", "bio": "PHP, Linux, sour dough baking, 日本; Austrian living in Frankfurt", @@ -11318,6 +11515,29 @@ "company": null, "blog": "https://herndl.org" }, + { + "login": "hotfix31", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 416, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/1555884?v=4", + "bio": null, + "name": "Frédéric Fayard-Le Barzic", + "location": "Toulouse", + "company": "ChapsVision", + "blog": "https://fayard-lebarzic.fr" + }, { "login": "idsplus-carlos", "repos": [ @@ -11332,7 +11552,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 409, + "rank": 417, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/44832925?v=4", "bio": null, @@ -11355,7 +11575,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 410, + "rank": 418, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/10922885?v=4", "bio": null, @@ -11373,7 +11593,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 411, + "rank": 419, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2848293?v=4", "bio": "PHP, Drupal, Symfony, Ansible, Jenkins, New Relic, Blackfire, Javascript..", @@ -11391,7 +11611,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 412, + "rank": 420, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/25279263?v=4", "bio": "JavaScript Engineer | Open Sourcerer", @@ -11409,7 +11629,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 413, + "rank": 421, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/390431?v=4", "bio": "💻", @@ -11432,7 +11652,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 414, + "rank": 422, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1461106?v=4", "bio": null, @@ -11450,7 +11670,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 415, + "rank": 423, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/770797?v=4", "bio": null, @@ -11473,7 +11693,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 416, + "rank": 424, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/143341?v=4", "bio": null, @@ -11496,7 +11716,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 417, + "rank": 425, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/90466?v=4", "bio": null, @@ -11519,7 +11739,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 418, + "rank": 426, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/16880485?v=4", "bio": "Backend developer", @@ -11528,6 +11748,29 @@ "company": "les-tilleuls.coop", "blog": "https://les-tilleuls.coop/" }, + { + "login": "jsampedro77", + "repos": [ + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 427, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/1857630?v=4", + "bio": null, + "name": "Javier Sampedro", + "location": "Arenys de Munt, Barcelona", + "company": "TicTAP.me", + "blog": "" + }, { "login": "k-37", "repos": [ @@ -11537,7 +11780,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 419, + "rank": 428, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/60838818?v=4", "bio": null, @@ -11555,7 +11798,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 420, + "rank": 429, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4061805?v=4", "bio": null, @@ -11578,7 +11821,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 421, + "rank": 430, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/15939709?v=4", "bio": "(Backend) Web Developer in Toulouse, France.\r\nI'm mostly working with Symfony and ReactJS. \r\nI enjoy learning, doing and to explain tests and code quality ❤️", @@ -11601,7 +11844,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 422, + "rank": 431, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/84979570?v=4", "bio": null, @@ -11619,7 +11862,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 423, + "rank": 432, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1819360?v=4", "bio": null, @@ -11637,7 +11880,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 424, + "rank": 433, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/20638?v=4", "bio": "One day, somewhere, somehow, we shall build a place where people can walk and dream for centuries. \r\n\r\n-- Christopher Alexander ", @@ -11646,6 +11889,29 @@ "company": null, "blog": "http://kevburnsjr.com" }, + { + "login": "komandar", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 434, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/8778012?v=4", + "bio": "Just a human being. Develops things and improves business requirements.", + "name": "Sebastian Kessler", + "location": "Monkey Island 🐒", + "company": null, + "blog": "https://skessler.de" + }, { "login": "komik966", "repos": [ @@ -11660,7 +11926,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 425, + "rank": 435, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8155563?v=4", "bio": null, @@ -11678,7 +11944,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 426, + "rank": 436, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/864114?v=4", "bio": null, @@ -11696,7 +11962,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 427, + "rank": 437, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/5382753?v=4", "bio": "Just another lazy web dev", @@ -11714,7 +11980,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 428, + "rank": 438, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4509454?v=4", "bio": null, @@ -11732,7 +11998,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 429, + "rank": 439, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/6093572?v=4", "bio": "CTO at @w3r-one", @@ -11741,6 +12007,29 @@ "company": "W3r.one", "blog": "https://w3r.one" }, + { + "login": "lazka", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 440, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/991986?v=4", + "bio": "ᅟ", + "name": "Christoph Reiter", + "location": "Graz", + "company": null, + "blog": "http://lazka.github.io" + }, { "login": "loconox", "repos": [ @@ -11750,7 +12039,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 430, + "rank": 441, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/7791256?v=4", "bio": "Tech lead at Egerie.", @@ -11773,7 +12062,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 431, + "rank": 442, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1225253?v=4", "bio": null, @@ -11791,7 +12080,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 432, + "rank": 443, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/351039?v=4", "bio": null, @@ -11809,7 +12098,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 433, + "rank": 444, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/27778481?v=4", "bio": null, @@ -11819,19 +12108,42 @@ "blog": "" }, { - "login": "marek-pietrzak-tg", + "login": "marek-pietrzak-tg", + "repos": [ + { + "repo": "docs", + "contributions": 2, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 445, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/2435655?v=4", + "bio": "PHP, Symfony, TDD, DDD", + "name": "Marek Pietrzak", + "location": null, + "company": null, + "blog": "" + }, + { + "login": "mariantrifu", "repos": [ { - "repo": "docs", - "contributions": 2, - "url": "https://github.com/api-platform/docs" + "repo": "laravel", + "contributions": 1, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" } ], - "rank": 434, + "rank": 446, "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/2435655?v=4", - "bio": "PHP, Symfony, TDD, DDD", - "name": "Marek Pietrzak", + "avatar_url": "https://avatars.githubusercontent.com/u/4181889?v=4", + "bio": null, + "name": "Marian Trifu", "location": null, "company": null, "blog": "" @@ -11845,7 +12157,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 435, + "rank": 447, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/22563689?v=4", "bio": null, @@ -11868,7 +12180,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 436, + "rank": 448, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4480075?v=4", "bio": null, @@ -11891,7 +12203,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 437, + "rank": 449, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/7423207?v=4", "bio": null, @@ -11914,7 +12226,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 438, + "rank": 450, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/14213930?v=4", "bio": null, @@ -11937,7 +12249,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 439, + "rank": 451, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/494845?v=4", "bio": "PHP, Symfony, React, a little golang, homebrewing", @@ -11960,7 +12272,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 440, + "rank": 452, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8223318?v=4", "bio": "ismailzai.com/keys/ssh.pub\r\nismailzai.com/keys/gpg.asc", @@ -11983,7 +12295,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 441, + "rank": 453, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/74459?v=4", "bio": null, @@ -12006,7 +12318,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 442, + "rank": 454, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/548536?v=4", "bio": "Deputy CTO and techno lover", @@ -12024,7 +12336,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 443, + "rank": 455, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/882397?v=4", "bio": "Freelance developer & consultant. Laravel specialist. Spring fan. React and Vue user. Open-source advocate. New technologies geek. Apple fan. @AsgardCms creator", @@ -12042,7 +12354,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 444, + "rank": 456, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/11576446?v=4", "bio": null, @@ -12060,7 +12372,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 445, + "rank": 457, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1620454?v=4", "bio": null, @@ -12078,7 +12390,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 446, + "rank": 458, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/15169250?v=4", "bio": null, @@ -12096,7 +12408,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 447, + "rank": 459, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/199838?v=4", "bio": null, @@ -12119,7 +12431,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 448, + "rank": 460, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/342090?v=4", "bio": null, @@ -12142,7 +12454,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 449, + "rank": 461, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/197604?v=4", "bio": null, @@ -12165,7 +12477,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 450, + "rank": 462, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/496233?v=4", "bio": null, @@ -12188,7 +12500,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 451, + "rank": 463, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/197154?v=4", "bio": null, @@ -12211,7 +12523,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 452, + "rank": 464, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1848817?v=4", "bio": null, @@ -12234,7 +12546,7 @@ "url": "https://github.com/api-platform/metadata" } ], - "rank": 453, + "rank": 465, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2717390?v=4", "bio": null, @@ -12257,7 +12569,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 454, + "rank": 466, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2827467?v=4", "bio": "Freelancing full stack web application architect and consultant. Focusing on Java (Spring, Wicket), PHP (Symfony) and Angular.", @@ -12280,7 +12592,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 455, + "rank": 467, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1941578?v=4", "bio": null, @@ -12289,6 +12601,29 @@ "company": null, "blog": "" }, + { + "login": "pyatnitsev", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 468, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/4361764?v=4", + "bio": null, + "name": "Danil Pyatnitsev", + "location": "Moscow, Russia", + "company": "Finam", + "blog": "https://pyatnitsev.ru" + }, { "login": "qboot", "repos": [ @@ -12303,7 +12638,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 456, + "rank": 469, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/20137632?v=4", "bio": "I love trying new things, especially on the internet. ✨ Life is beautiful 🐋🌻🌳 French Tech 🇫🇷", @@ -12321,7 +12656,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 457, + "rank": 470, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8060564?v=4", "bio": null, @@ -12339,7 +12674,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 458, + "rank": 471, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3120856?v=4", "bio": null, @@ -12362,7 +12697,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 459, + "rank": 472, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/9253113?v=4", "bio": null, @@ -12380,7 +12715,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 460, + "rank": 473, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/6103961?v=4", "bio": null, @@ -12403,13 +12738,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 461, + "rank": 474, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1212958?v=4", "bio": null, "name": "Denis Rendler", "location": "Cluj - Napoca", - "company": "Koderhut.eu", + "company": "www.denis.rendler.me", "blog": "http://www.denis.rendler.me" }, { @@ -12421,7 +12756,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 462, + "rank": 475, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/14915052?v=4", "bio": null, @@ -12444,7 +12779,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 463, + "rank": 476, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/627886?v=4", "bio": "Passionate Web Developer, Symfony, AJAX, Web 2.0 and more, Internet geek, iOS lover ... learning Docker, living life without thinking too much", @@ -12462,7 +12797,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 464, + "rank": 477, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/5249624?v=4", "bio": "I automate stuff", @@ -12480,7 +12815,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 465, + "rank": 478, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1226384?v=4", "bio": "Open Source enthusiast, Go & Cloud Native fan. @cncf Ambassador. Speaker, tech content creator. @dagger Commander", @@ -12498,7 +12833,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 466, + "rank": 479, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/43172716?v=4", "bio": "@google Ex DSC Lead | @microsoft Student Partner | @mozillian | \r\n", @@ -12521,7 +12856,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 467, + "rank": 480, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/712999?v=4", "bio": null, @@ -12539,7 +12874,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 468, + "rank": 481, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4902384?v=4", "bio": null, @@ -12562,7 +12897,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 469, + "rank": 482, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1065939?v=4", "bio": null, @@ -12585,7 +12920,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 470, + "rank": 483, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1302230?v=4", "bio": null, @@ -12603,7 +12938,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 471, + "rank": 484, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/327999?v=4", "bio": null, @@ -12621,7 +12956,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 472, + "rank": 485, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1806237?v=4", "bio": null, @@ -12639,7 +12974,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 473, + "rank": 486, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2756865?v=4", "bio": null, @@ -12657,7 +12992,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 474, + "rank": 487, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1180107?v=4", "bio": null, @@ -12680,7 +13015,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 475, + "rank": 488, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/67402?v=4", "bio": "@flow-php core developer. Formerly Engineer Manager at Aterian, CTO at Dimedic, Staff Engineer at TUI Musement.", @@ -12698,7 +13033,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 476, + "rank": 489, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/206316?v=4", "bio": null, @@ -12716,7 +13051,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 477, + "rank": 490, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/5610065?v=4", "bio": "Passionate developer, turning ideas into elegant code. Open-source enthusiast. Let's build something amazing together!", @@ -12734,7 +13069,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 478, + "rank": 491, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8436532?v=4", "bio": null, @@ -12752,7 +13087,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 479, + "rank": 492, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2990033?v=4", "bio": null, @@ -12775,7 +13110,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 480, + "rank": 493, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1195165?v=4", "bio": null, @@ -12793,7 +13128,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 481, + "rank": 494, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1040915?v=4", "bio": "Developer and music lover", @@ -12802,29 +13137,6 @@ "company": "MaxMilhas", "blog": "" }, - { - "login": "tyx", - "repos": [ - { - "repo": "state", - "contributions": 1, - "url": "https://github.com/api-platform/state" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 482, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/245494?v=4", - "bio": "DDD in love", - "name": "Timothée Barray", - "location": "Marseille", - "company": "@gogaille", - "blog": "" - }, { "login": "vuongxuongminh", "repos": [ @@ -12839,7 +13151,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 483, + "rank": 495, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/38932626?v=4", "bio": "Enjoy life.", @@ -12862,7 +13174,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 484, + "rank": 496, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/773875?v=4", "bio": "I love literature, mainly written in PHP.\r\n@Symfony Core Team Member", @@ -12885,7 +13197,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 485, + "rank": 497, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/639376?v=4", "bio": null, @@ -12903,7 +13215,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 486, + "rank": 498, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8489333?v=4", "bio": null, @@ -12921,7 +13233,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 487, + "rank": 499, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/80959825?v=4", "bio": null, @@ -12939,7 +13251,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 488, + "rank": 500, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/44259105?v=4", "bio": "https://gitlab.com/121593\r\n", @@ -12957,7 +13269,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 489, + "rank": 501, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2325383?v=4", "bio": null, @@ -12966,6 +13278,24 @@ "company": null, "blog": "" }, + { + "login": "4lxndr", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + } + ], + "rank": 502, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/15173990?v=4", + "bio": null, + "name": "alex", + "location": "Berlin", + "company": "Carposé", + "blog": "https://carpose.de/" + }, { "login": "4rthem", "repos": [ @@ -12975,7 +13305,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 490, + "rank": 503, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2180032?v=4", "bio": null, @@ -12993,7 +13323,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 491, + "rank": 504, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/75614656?v=4", "bio": "Senior Software Engineer @sqli", @@ -13011,7 +13341,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 492, + "rank": 505, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8030342?v=4", "bio": "Head of Web Studies & Development @Sanden-Manufacturing-Europe ", @@ -13029,7 +13359,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 493, + "rank": 506, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7613997?v=4", "bio": null, @@ -13047,7 +13377,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 494, + "rank": 507, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5858108?v=4", "bio": "Problem solver. Fullstack WebDev.", @@ -13065,7 +13395,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 495, + "rank": 508, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/75487534?v=4", "bio": null, @@ -13083,7 +13413,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 496, + "rank": 509, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6648753?v=4", "bio": "Web Dev - Back End but sometimes I code weird things", @@ -13101,7 +13431,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 497, + "rank": 510, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10198926?v=4", "bio": "Web developer", @@ -13119,7 +13449,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 498, + "rank": 511, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/24383925?v=4", "bio": "Web Dev @eleven-labs 🚀", @@ -13137,7 +13467,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 499, + "rank": 512, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/15607661?v=4", "bio": " Back-End Developer\r\n& Symfony addict", @@ -13155,7 +13485,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 500, + "rank": 513, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/927944?v=4", "bio": null, @@ -13173,7 +13503,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 501, + "rank": 514, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/895123?v=4", "bio": "Developer ", @@ -13191,7 +13521,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 502, + "rank": 515, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10684574?v=4", "bio": null, @@ -13209,7 +13539,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 503, + "rank": 516, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1245656?v=4", "bio": null, @@ -13227,7 +13557,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 504, + "rank": 517, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/588205?v=4", "bio": "Software engineer who <3 to code.", @@ -13245,7 +13575,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 505, + "rank": 518, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/796026?v=4", "bio": null, @@ -13263,7 +13593,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 506, + "rank": 519, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1379286?v=4", "bio": null, @@ -13281,7 +13611,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 507, + "rank": 520, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/17341310?v=4", "bio": "Fullstack Developer from Lower Saxony, Germany.\r\n\r\nI can write spaghetti in PHP (Symfony), Javascript (React + Vue), Rust", @@ -13299,7 +13629,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 508, + "rank": 521, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5942653?v=4", "bio": null, @@ -13317,7 +13647,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 509, + "rank": 522, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/59260854?v=4", "bio": "A simple developer who try to spread happiness, love and taste of learning ", @@ -13326,6 +13656,42 @@ "company": "@3codas ", "blog": "https://www.boutvalentin.com/" }, + { + "login": "Bravo-Romeo", + "repos": [ + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" + } + ], + "rank": 523, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/27001953?v=4", + "bio": null, + "name": "Ben", + "location": null, + "company": null, + "blog": "" + }, + { + "login": "BySplashGm", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 524, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/64276067?v=4", + "bio": "3rd year CS student - MIAGE", + "name": "Maxime", + "location": "France", + "company": "@coopTilleuls", + "blog": "https://maximeval.in" + }, { "login": "CarlSchwan", "repos": [ @@ -13335,13 +13701,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 510, + "rank": 525, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23653902?v=4", - "bio": "Free software programmer. KDE user and contributor. French and German :)\r\n\r\nPreviously GnuPG and KDAB", + "bio": "Free software programmer. Contribute to Nextcloud during the day and to KDE during the night. KDE e.V. board member.", "name": "Carl Schwan", "location": "Berlin, Germany", - "company": "@nextcloud ", + "company": "@nextcloud , @kde", "blog": "https://carlschwan.eu" }, { @@ -13353,7 +13719,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 511, + "rank": 526, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14248485?v=4", "bio": null, @@ -13371,7 +13737,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 512, + "rank": 527, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2522998?v=4", "bio": null, @@ -13389,7 +13755,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 513, + "rank": 528, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/735030?v=4", "bio": "Out of the box.", @@ -13407,13 +13773,13 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 514, + "rank": 529, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6475387?v=4", "bio": "Dutch, Autodidact, Diving Deep into Legacy frameworks, innovating along the way", "name": "Rémon S.", "location": "The Netherlands", - "company": "Comrads", + "company": "@comradssolutions ", "blog": "" }, { @@ -13425,7 +13791,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 515, + "rank": 530, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/74913783?v=4", "bio": null, @@ -13443,7 +13809,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 516, + "rank": 531, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2771909?v=4", "bio": "Full Stack Webdeveloper @PRinguin", @@ -13452,6 +13818,24 @@ "company": "PRinguin Digitalagentur", "blog": "https://pringuin.de" }, + { + "login": "Cryde", + "repos": [ + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 532, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/1662950?v=4", + "bio": null, + "name": "Jérémy", + "location": "Brussels", + "company": null, + "blog": "https://musicall.com" + }, { "login": "CurvesFR", "repos": [ @@ -13461,7 +13845,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 517, + "rank": 533, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/32187719?v=4", "bio": "Web Developer", @@ -13479,7 +13863,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 518, + "rank": 534, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/60774219?v=4", "bio": null, @@ -13497,7 +13881,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 519, + "rank": 535, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2045722?v=4", "bio": null, @@ -13515,7 +13899,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 520, + "rank": 536, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/119461278?v=4", "bio": null, @@ -13533,7 +13917,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 521, + "rank": 537, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9027047?v=4", "bio": "Teacher at IUT de Troyes / URCA (France): web programming, ergonomics, accessibility; researcher in automation and decision support: e-learning, coll. work", @@ -13551,7 +13935,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 522, + "rank": 538, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11960892?v=4", "bio": null, @@ -13569,7 +13953,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 523, + "rank": 539, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8595779?v=4", "bio": "Discord: dartcz", @@ -13587,7 +13971,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 524, + "rank": 540, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/255767?v=4", "bio": null, @@ -13605,7 +13989,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 525, + "rank": 541, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4302775?v=4", "bio": null, @@ -13623,7 +14007,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 526, + "rank": 542, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/162974?v=4", "bio": "Steampunk Dragonkitty hacking things. Electronics and code nerd. \r\n\r\nFounder of @partkeepr (now retired)", @@ -13641,7 +14025,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 527, + "rank": 543, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2161759?v=4", "bio": null, @@ -13659,7 +14043,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 528, + "rank": 544, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/102731189?v=4", "bio": null, @@ -13677,7 +14061,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 529, + "rank": 545, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/21344385?v=4", "bio": null, @@ -13695,7 +14079,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 530, + "rank": 546, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/89589750?v=4", "bio": null, @@ -13713,7 +14097,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 531, + "rank": 547, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/22527985?v=4", "bio": "Entrepreneur, Fullstack Developer and Photographer in the beautiful city of Nantes.", @@ -13731,7 +14115,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 532, + "rank": 548, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6639528?v=4", "bio": null, @@ -13749,7 +14133,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 533, + "rank": 549, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10089551?v=4", "bio": null, @@ -13767,7 +14151,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 534, + "rank": 550, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/591088?v=4", "bio": null, @@ -13785,7 +14169,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 535, + "rank": 551, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13744329?v=4", "bio": "PHP developer @sensiolabs and forever learner, former @OpenClassrooms mentor. \r\n\r\nI share my knowledge through the web, oh and i love pizza", @@ -13803,7 +14187,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 536, + "rank": 552, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1503393?v=4", "bio": null, @@ -13821,7 +14205,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 537, + "rank": 553, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/99896288?v=4", "bio": null, @@ -13839,7 +14223,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 538, + "rank": 554, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11915608?v=4", "bio": null, @@ -13848,24 +14232,6 @@ "company": null, "blog": "" }, - { - "login": "Huppys", - "repos": [ - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 539, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/7705640?v=4", - "bio": null, - "name": "Oli", - "location": "Germany", - "company": null, - "blog": "https://oliverwitzki.de" - }, { "login": "IndraGunawan", "repos": [ @@ -13875,7 +14241,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 540, + "rank": 555, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2704730?v=4", "bio": null, @@ -13893,7 +14259,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 541, + "rank": 556, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1433301?v=4", "bio": null, @@ -13911,7 +14277,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 542, + "rank": 557, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5990987?v=4", "bio": null, @@ -13929,7 +14295,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 543, + "rank": 558, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/101651825?v=4", "bio": null, @@ -13947,7 +14313,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 544, + "rank": 559, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4981490?v=4", "bio": null, @@ -13965,7 +14331,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 545, + "rank": 560, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23280525?v=4", "bio": "SRE @hostnet. Dev/Ops Engineer @saphyresolutions. I like working with things like Puppet, Symfony, API Platform and ReactJS.", @@ -13974,24 +14340,6 @@ "company": "Hostnet", "blog": "" }, - { - "login": "Jean-Beru", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 546, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/6114779?v=4", - "bio": null, - "name": "Hubert Lenoir", - "location": null, - "company": "SensioLabs", - "blog": "" - }, { "login": "JercSi", "repos": [ @@ -14001,7 +14349,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 547, + "rank": 561, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5267726?v=4", "bio": null, @@ -14019,7 +14367,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 548, + "rank": 562, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1903212?v=4", "bio": null, @@ -14037,7 +14385,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 549, + "rank": 563, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/32913603?v=4", "bio": "Medical doctor, Public Health", @@ -14055,7 +14403,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 550, + "rank": 564, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/17642317?v=4", "bio": null, @@ -14073,7 +14421,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 551, + "rank": 565, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5416367?v=4", "bio": "Software Developer, Symfony - NextJs", @@ -14091,7 +14439,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 552, + "rank": 566, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/86676740?v=4", "bio": "👨‍💻 SysOps Engineer \r\n -\r\n🔨 ex-Laravel/PHP developer", @@ -14109,7 +14457,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 553, + "rank": 567, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19251032?v=4", "bio": null, @@ -14127,7 +14475,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 554, + "rank": 568, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/24671528?v=4", "bio": "👨🏻‍💻 Senior Backend Developer | AI Master’s @ Volgatech | 🚀 scalable systems", @@ -14145,7 +14493,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 555, + "rank": 569, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6927077?v=4", "bio": null, @@ -14163,7 +14511,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 556, + "rank": 570, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/99896434?v=4", "bio": null, @@ -14181,7 +14529,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 557, + "rank": 571, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/25544892?v=4", "bio": null, @@ -14199,7 +14547,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 558, + "rank": 572, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/456437?v=4", "bio": null, @@ -14217,7 +14565,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 559, + "rank": 573, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1608265?v=4", "bio": null, @@ -14235,7 +14583,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 560, + "rank": 574, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9105243?v=4", "bio": "Backend Developer | CakePHP Core Member", @@ -14253,7 +14601,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 561, + "rank": 575, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/46711821?v=4", "bio": null, @@ -14271,7 +14619,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 562, + "rank": 576, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/18685557?v=4", "bio": null, @@ -14289,12 +14637,12 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 563, + "rank": 577, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11477247?v=4", - "bio": null, + "bio": "Développeuse Web et conférencière chez @jolicode :sparkles: ", "name": "Marion Hurteau", - "location": "Paris", + "location": "Nantes", "company": "@jolicode", "blog": "" }, @@ -14307,7 +14655,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 564, + "rank": 578, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/18153385?v=4", "bio": "Software Engineer @stoikio ", @@ -14325,7 +14673,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 565, + "rank": 579, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/18031837?v=4", "bio": "Symfony & Vue.js developper. Interested about AI, devops stuffs and football. Currently working with Api-platform", @@ -14343,7 +14691,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 566, + "rank": 580, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5618007?v=4", "bio": null, @@ -14361,7 +14709,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 567, + "rank": 581, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1757355?v=4", "bio": "Developer by day, entrepreneur by night (@looselycoupled.nl) 🦸🏽‍♂️", @@ -14379,7 +14727,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 568, + "rank": 582, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/18002435?v=4", "bio": null, @@ -14397,7 +14745,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 569, + "rank": 583, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1380432?v=4", "bio": null, @@ -14415,7 +14763,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 570, + "rank": 584, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/29265539?v=4", "bio": null, @@ -14433,7 +14781,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 571, + "rank": 585, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8554558?v=4", "bio": null, @@ -14451,7 +14799,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 572, + "rank": 586, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/837719?v=4", "bio": "Christ-follower. Husband. Dad. Maker.", @@ -14469,7 +14817,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 573, + "rank": 587, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/36332481?v=4", "bio": "Thinker.", @@ -14482,12 +14830,12 @@ "login": "Ninos", "repos": [ { - "repo": "docs", + "repo": "demo", "contributions": 1, - "url": "https://github.com/api-platform/docs" + "url": "https://github.com/api-platform/demo" } ], - "rank": 574, + "rank": 588, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1012403?v=4", "bio": null, @@ -14496,24 +14844,6 @@ "company": "Ego-IT", "blog": "https://ninosego.de/" }, - { - "login": "OlafFriday", - "repos": [ - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 575, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/169979696?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, { "login": "Oryss", "repos": [ @@ -14523,7 +14853,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 576, + "rank": 589, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/43440732?v=4", "bio": null, @@ -14541,7 +14871,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 577, + "rank": 590, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7700855?v=4", "bio": "Web Enthusiast", @@ -14559,7 +14889,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 578, + "rank": 591, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13301795?v=4", "bio": "Software engineer @adeo", @@ -14577,7 +14907,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 579, + "rank": 592, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/854407?v=4", "bio": "🙃 pɐǝɥ ɹnoʎ uɹnʇ noʎ uǝɥʍ ɥɔʇɐʍ I", @@ -14595,7 +14925,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 580, + "rank": 593, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7443490?v=4", "bio": null, @@ -14613,7 +14943,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 581, + "rank": 594, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1333763?v=4", "bio": null, @@ -14631,12 +14961,12 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 582, + "rank": 595, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5749715?v=4", "bio": null, "name": "Richard Hagen", - "location": "Rocky westcoast of Norway", + "location": "Norway", "company": null, "blog": "https://r6.no" }, @@ -14649,7 +14979,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 583, + "rank": 596, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2697738?v=4", "bio": null, @@ -14667,7 +14997,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 584, + "rank": 597, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6151929?v=4", "bio": null, @@ -14685,7 +15015,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 585, + "rank": 598, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/29508475?v=4", "bio": "Full-Stack web developer.", @@ -14694,6 +15024,24 @@ "company": "Digital Campus Bordeaux", "blog": "" }, + { + "login": "Seros", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 599, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/9016208?v=4", + "bio": null, + "name": "Erik Müller", + "location": "Leipzig, Germany", + "company": null, + "blog": "" + }, { "login": "SharkEzz", "repos": [ @@ -14703,13 +15051,13 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 586, + "rank": 600, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/27637158?v=4", "bio": null, "name": "SharkEzz", "location": "Internet", - "company": "Multi-Impact", + "company": null, "blog": "https://tristandida.fr" }, { @@ -14721,7 +15069,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 587, + "rank": 601, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/884441?v=4", "bio": null, @@ -14730,24 +15078,6 @@ "company": "@alpac0de", "blog": "http://nawo.mbechezi.com" }, - { - "login": "Shleif91", - "repos": [ - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 588, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/18234924?v=4", - "bio": "web-developer", - "name": "Oleg", - "location": null, - "company": "МАРКЕТ ДАТА", - "blog": "" - }, { "login": "Siemienik", "repos": [ @@ -14757,7 +15087,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 589, + "rank": 602, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2893099?v=4", "bio": "👋 Siema!", @@ -14775,13 +15105,13 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 590, + "rank": 603, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6765536?v=4", "bio": null, "name": "Maxi Ertl", "location": "Germany", - "company": "@PRinguin Digitalagentur", + "company": null, "blog": "" }, { @@ -14793,7 +15123,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 591, + "rank": 604, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3284722?v=4", "bio": "web dev.", @@ -14811,7 +15141,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 592, + "rank": 605, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/92581654?v=4", "bio": null, @@ -14829,7 +15159,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 593, + "rank": 606, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1236561?v=4", "bio": "Rust & Python developer. In love with building fuzzers, interpreters and performant software", @@ -14847,14 +15177,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 594, + "rank": 607, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/12063011?v=4", "bio": null, "name": "David Garcia", "location": "Barcelona", "company": "ApiumHub", - "blog": "https://apiumhub.com/" + "blog": "https://www.plainconcepts.com/" }, { "login": "Sybio", @@ -14865,7 +15195,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 595, + "rank": 608, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1507731?v=4", "bio": null, @@ -14874,6 +15204,24 @@ "company": "Freelancer", "blog": "https://twitter.com/Sybio01" }, + { + "login": "TaminoWalter", + "repos": [ + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" + } + ], + "rank": 609, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/54551451?v=4", + "bio": null, + "name": "Tamino Walter", + "location": null, + "company": null, + "blog": "" + }, { "login": "ThcDelux3", "repos": [ @@ -14883,7 +15231,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 596, + "rank": 610, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/25651512?v=4", "bio": "Felix Ruby R²", @@ -14901,7 +15249,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 597, + "rank": 611, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5079109?v=4", "bio": "Hi,\r\nPHP/API-plateform/Symfony/Drupal Developer.", @@ -14911,58 +15259,22 @@ "blog": "https://www.drupal.org/u/mars0atack" }, { - "login": "Timu57", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 598, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/28825283?v=4", - "bio": null, - "name": "Timucin Ünal", - "location": "Germany", - "company": "@GoodSoftDE ", - "blog": "https://www.goodsoft.de" - }, - { - "login": "Tjeerd", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 599, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/853463?v=4", - "bio": null, - "name": "Tjeerd Bijlsma", - "location": "Netherlands", - "company": "Ibuildings", - "blog": "" - }, - { - "login": "TomasVotruba", + "login": "TimoBakx", "repos": [ { - "repo": "core", + "repo": "openapi", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/openapi" } ], - "rank": 600, + "rank": 612, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/924196?v=4", - "bio": "@rectorphp\r\n\r\n\"If you don't want to do something, you'll find an excuse. \r\nIf you really do, you'll find a way.\"\r\n\r\nOpen-Source for Life ❤️️", - "name": "Tomas Votruba", - "location": "Prague, Czech Republic", - "company": "@rectorphp", - "blog": "https://tomasvotruba.com" + "avatar_url": "https://avatars.githubusercontent.com/u/839801?v=4", + "bio": "I write web applications in PHP using Symfony. He/him.", + "name": "Timo Bakx", + "location": "Hernen, Netherlands", + "company": "@LinkuNijmegen ", + "blog": "https://timobakx.dev" }, { "login": "TorbenKoehn", @@ -14973,7 +15285,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 601, + "rank": 613, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1403556?v=4", "bio": null, @@ -14983,40 +15295,40 @@ "blog": "" }, { - "login": "Valouleloup", + "login": "UnseenBook", "repos": [ { - "repo": "core", + "repo": "schema-generator", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 602, + "rank": 614, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/15898456?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1952805?v=4", "bio": null, - "name": null, + "name": "Unseen Daan", "location": null, "company": null, "blog": "" }, { - "login": "VincentChalnot", + "login": "Vinarnt", "repos": [ { - "repo": "core", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/symfony" } ], - "rank": 603, + "rank": 615, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1535893?v=4", - "bio": "Symfony expert, freelance developer", - "name": "Vincent Chalnot", - "location": "Lyon, France", - "company": "@BlueBearGaming ", - "blog": "http://chalnot.fr" + "avatar_url": "https://avatars.githubusercontent.com/u/29451132?v=4", + "bio": null, + "name": null, + "location": null, + "company": "@done-services ", + "blog": "" }, { "login": "VincentDugard", @@ -15027,7 +15339,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 604, + "rank": 616, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19326477?v=4", "bio": null, @@ -15045,7 +15357,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 605, + "rank": 617, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/28780594?v=4", "bio": null, @@ -15054,24 +15366,6 @@ "company": null, "blog": "https://moebuta.org/" }, - { - "login": "WybrenKoelmans", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 606, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/2108992?v=4", - "bio": null, - "name": "Wybren Koelmans", - "location": null, - "company": null, - "blog": "" - }, { "login": "Zebradil", "repos": [ @@ -15081,7 +15375,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 607, + "rank": 618, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1475583?v=4", "bio": "SRE at @trivago ", @@ -15099,7 +15393,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 608, + "rank": 619, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14129266?v=4", "bio": null, @@ -15117,7 +15411,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 609, + "rank": 620, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/17406826?v=4", "bio": null, @@ -15135,7 +15429,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 610, + "rank": 621, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/12262847?v=4", "bio": null, @@ -15153,7 +15447,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 611, + "rank": 622, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/611271?v=4", "bio": null, @@ -15171,7 +15465,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 612, + "rank": 623, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7711877?v=4", "bio": "Freelance web developer", @@ -15189,7 +15483,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 613, + "rank": 624, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3305232?v=4", "bio": "I'm a software engineer who builds backend things for the web.", @@ -15207,7 +15501,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 614, + "rank": 625, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1524422?v=4", "bio": "Freelance Developer on Symfony, React / NextJS & WordPress", @@ -15225,7 +15519,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 615, + "rank": 626, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7757298?v=4", "bio": null, @@ -15243,7 +15537,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 616, + "rank": 627, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1586450?v=4", "bio": null, @@ -15261,7 +15555,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 617, + "rank": 628, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/383198?v=4", "bio": "@mongodb lead engineer. open source contributor, maintainer, and advocate.", @@ -15279,7 +15573,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 618, + "rank": 629, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1588144?v=4", "bio": "PHP, Symfony, nodejs.\r\n\r\nGitLab:\r\nhttps://framagit.org/alcalyn\r\nhttps://gitlab.com/Alcalyn", @@ -15297,7 +15591,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 619, + "rank": 630, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3056148?v=4", "bio": null, @@ -15315,7 +15609,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 620, + "rank": 631, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/105975?v=4", "bio": "IT freelancer in love with @symfony", @@ -15333,7 +15627,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 621, + "rank": 632, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1221867?v=4", "bio": "Have you tried turning it off and on again !? Work at Yousign #Symfony #Poitiers", @@ -15351,7 +15645,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 622, + "rank": 633, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4458806?v=4", "bio": "Web Analyst & Developer \r\n- \r\nDevOps\r\n", @@ -15369,7 +15663,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 623, + "rank": 634, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6115681?v=4", "bio": "Founding Engineer Swiss Knife for @meterly (hyperline) , Ex-Senior Core dev @Spendesk, Ex-Core Team Engineer @akeneo", @@ -15387,7 +15681,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 624, + "rank": 635, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1681800?v=4", "bio": null, @@ -15405,7 +15699,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 625, + "rank": 636, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/18536571?v=4", "bio": null, @@ -15423,7 +15717,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 626, + "rank": 637, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/541665?v=4", "bio": null, @@ -15441,7 +15735,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 627, + "rank": 638, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/26335275?v=4", "bio": null, @@ -15459,7 +15753,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 628, + "rank": 639, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/37752638?v=4", "bio": null, @@ -15477,7 +15771,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 629, + "rank": 640, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3502280?v=4", "bio": "Software Developer", @@ -15495,7 +15789,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 630, + "rank": 641, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11387086?v=4", "bio": null, @@ -15513,7 +15807,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 631, + "rank": 642, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11900120?v=4", "bio": null, @@ -15531,7 +15825,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 632, + "rank": 643, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/15616381?v=4", "bio": null, @@ -15549,7 +15843,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 633, + "rank": 644, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1073273?v=4", "bio": null, @@ -15567,7 +15861,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 634, + "rank": 645, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8191198?v=4", "bio": "Linux lover and OSS enthusiast. Platform Engineer at @ccl-consulting. Previously @airbus, @carrefour-group", @@ -15585,7 +15879,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 635, + "rank": 646, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23396605?v=4", "bio": null, @@ -15603,7 +15897,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 636, + "rank": 647, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9268494?v=4", "bio": "pas très bio", @@ -15621,13 +15915,13 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 637, + "rank": 648, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4849233?v=4", "bio": "Lead Developer back-end PHP", "name": "Jérémy", "location": "Lyon, France", - "company": "Wecandoo", + "company": null, "blog": "https://www.babeuloula.fr/" }, { @@ -15639,7 +15933,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 638, + "rank": 649, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1140272?v=4", "bio": null, @@ -15657,7 +15951,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 639, + "rank": 650, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/515957?v=4", "bio": null, @@ -15675,7 +15969,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 640, + "rank": 651, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/24526321?v=4", "bio": "Freelance back end web developer.\r\n@symfony", @@ -15693,7 +15987,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 641, + "rank": 652, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4162677?v=4", "bio": null, @@ -15711,7 +16005,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 642, + "rank": 653, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/712014?v=4", "bio": null, @@ -15729,7 +16023,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 643, + "rank": 654, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/829364?v=4", "bio": null, @@ -15747,7 +16041,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 644, + "rank": 655, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/235928?v=4", "bio": "Father, geek in general, rookie writer, technical manager of eZ Platform.", @@ -15765,7 +16059,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 645, + "rank": 656, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2073458?v=4", "bio": "Github tells me to write a \"bio\" here. Has this anything to do with biology?", @@ -15783,7 +16077,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 646, + "rank": 657, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9569157?v=4", "bio": null, @@ -15801,7 +16095,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 647, + "rank": 658, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1955007?v=4", "bio": null, @@ -15819,7 +16113,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 648, + "rank": 659, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/212269?v=4", "bio": null, @@ -15837,7 +16131,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 649, + "rank": 660, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2156742?v=4", "bio": "Web application developer based in the French Alps.", @@ -15855,7 +16149,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 650, + "rank": 661, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/200069340?v=4", "bio": null, @@ -15873,7 +16167,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 651, + "rank": 662, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4040743?v=4", "bio": null, @@ -15891,7 +16185,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 652, + "rank": 663, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1362807?v=4", "bio": "Haskell, ViM, Pastas", @@ -15909,7 +16203,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 653, + "rank": 664, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5700358?v=4", "bio": null, @@ -15927,7 +16221,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 654, + "rank": 665, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1443312?v=4", "bio": null, @@ -15945,7 +16239,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 655, + "rank": 666, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1051554?v=4", "bio": null, @@ -15963,7 +16257,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 656, + "rank": 667, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14184523?v=4", "bio": "Full Stack Developer", @@ -15981,7 +16275,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 657, + "rank": 668, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/807362?v=4", "bio": "CTO @Semji - Software architect - passionate fullstack web developer - I'm a #docker #php #js addict. Got the soul of a #devops too.", @@ -15999,7 +16293,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 658, + "rank": 669, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1439557?v=4", "bio": null, @@ -16017,7 +16311,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 659, + "rank": 670, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/209230?v=4", "bio": null, @@ -16035,7 +16329,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 660, + "rank": 671, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6572776?v=4", "bio": null, @@ -16053,7 +16347,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 661, + "rank": 672, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6417654?v=4", "bio": null, @@ -16071,7 +16365,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 662, + "rank": 673, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/149716117?v=4", "bio": null, @@ -16089,7 +16383,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 663, + "rank": 674, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/956847?v=4", "bio": null, @@ -16098,24 +16392,6 @@ "company": "ownCloud", "blog": "http://www.butonic.de" }, - { - "login": "camohob", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 664, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/7923965?v=4", - "bio": "PHP, JS/TS, GoLang, C/C++", - "name": "Vitaliy", - "location": null, - "company": null, - "blog": "" - }, { "login": "caseyamcl", "repos": [ @@ -16125,7 +16401,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 665, + "rank": 675, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/53035?v=4", "bio": "Full stack developer & devops dude. I spend most of my time in PHP, Symfony, VueJS, Docker, CentOS, and managing projects.", @@ -16143,7 +16419,7 @@ "url": "https://github.com/api-platform/laravel" } ], - "rank": 666, + "rank": 676, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3186515?v=4", "bio": null, @@ -16153,7 +16429,25 @@ "blog": "" }, { - "login": "cdaguerre", + "login": "cdaguerre", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 677, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/4642448?v=4", + "bio": null, + "name": "Christian Daguerre", + "location": "Paris, France", + "company": null, + "blog": "" + }, + { + "login": "ceesvanegmond", "repos": [ { "repo": "core", @@ -16161,12 +16455,12 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 667, + "rank": 678, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/4642448?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/883497?v=4", "bio": null, - "name": "Christian Daguerre", - "location": "Paris, France", + "name": "Cees van Egmond", + "location": "The Netherlands", "company": null, "blog": "" }, @@ -16179,7 +16473,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 668, + "rank": 679, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6780152?v=4", "bio": null, @@ -16197,11 +16491,11 @@ "url": "https://github.com/api-platform/graphql" } ], - "rank": 669, + "rank": 680, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/47795200?v=4", "bio": null, - "name": null, + "name": "CharlieDev", "location": null, "company": null, "blog": "" @@ -16215,7 +16509,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 670, + "rank": 681, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1496922?v=4", "bio": "Primarily a web and automation programmer that dabbles in Distributed computing by building my own Raspberry Pi Cluster", @@ -16233,7 +16527,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 671, + "rank": 682, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13640912?v=4", "bio": null, @@ -16251,7 +16545,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 672, + "rank": 683, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3925?v=4", "bio": null, @@ -16269,7 +16563,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 673, + "rank": 684, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3041408?v=4", "bio": null, @@ -16287,7 +16581,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 674, + "rank": 685, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/171294?v=4", "bio": "Warp drives, not bombs.", @@ -16305,7 +16599,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 675, + "rank": 686, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9797898?v=4", "bio": "I'm a polyvalent developer who likes doing \r\nfun things with computers.", @@ -16323,13 +16617,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 676, + "rank": 687, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/42181698?v=4", "bio": null, "name": "Luke Kuzmish", "location": "Erie, Pennsylvania, USA", - "company": null, + "company": "@loopreturns", "blog": "https://cosmastech.com" }, { @@ -16341,7 +16635,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 677, + "rank": 688, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6598426?v=4", "bio": null, @@ -16350,6 +16644,24 @@ "company": "Wizards of the Coast", "blog": "https://crbanman.dev" }, + { + "login": "creocoder", + "repos": [ + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 689, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/896494?v=4", + "bio": null, + "name": "Alexander Kochetov", + "location": null, + "company": "@Rebilly", + "blog": "" + }, { "login": "cristi-contiu", "repos": [ @@ -16359,7 +16671,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 678, + "rank": 690, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7203944?v=4", "bio": "Symfony-Certified Full-Stack Developer", @@ -16377,7 +16689,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 679, + "rank": 691, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1455673?v=4", "bio": "Managing Director at Omines Full Service Internetbureau (@omines), adept in many languages, advocate of pragmatic and efficient development.", @@ -16395,7 +16707,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 680, + "rank": 692, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/594384?v=4", "bio": null, @@ -16413,11 +16725,11 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 681, + "rank": 693, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1032689?v=4", "bio": null, - "name": "Christophe Vergne", + "name": "Christophe VERGNE", "location": "France", "company": null, "blog": "http://www.christophevergne.fr" @@ -16431,7 +16743,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 682, + "rank": 694, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3310256?v=4", "bio": null, @@ -16440,24 +16752,6 @@ "company": null, "blog": "" }, - { - "login": "daFish", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 683, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/150416?v=4", - "bio": null, - "name": "Marcus Stöhr", - "location": "Cologne, Germany", - "company": "@brainbits ", - "blog": "https://www.fmdb.net" - }, { "login": "daaAd1", "repos": [ @@ -16467,7 +16761,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 684, + "rank": 695, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/15359784?v=4", "bio": "Web developer from Slovakia.", @@ -16485,7 +16779,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 685, + "rank": 696, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1019982?v=4", "bio": null, @@ -16503,7 +16797,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 686, + "rank": 697, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/22883097?v=4", "bio": "Lead Developer @wanadev ", @@ -16521,7 +16815,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 687, + "rank": 698, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/16171524?v=4", "bio": "Senior lead developer PHP / Symfony / Vue.js ", @@ -16539,13 +16833,13 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 688, + "rank": 699, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/110678?v=4", - "bio": "Former CTO at @platformsh", + "bio": "Building the new thing. Formerly CTO at @platformsh.", "name": "Damien Tournoud", "location": null, - "company": "Platform.sh", + "company": null, "blog": "" }, { @@ -16557,7 +16851,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 689, + "rank": 700, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19910826?v=4", "bio": "Senior Software Engineer && Cybersecurity Enthusiast", @@ -16575,7 +16869,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 690, + "rank": 701, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/20062409?v=4", "bio": null, @@ -16593,7 +16887,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 691, + "rank": 702, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1819818?v=4", "bio": "Senior software engineer, MSc. Experienced in range of languages including PHP, Python, Golang, Java. API design, network automation, big data analysis.", @@ -16611,7 +16905,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 692, + "rank": 703, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/72162602?v=4", "bio": null, @@ -16629,7 +16923,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 693, + "rank": 704, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/76576?v=4", "bio": null, @@ -16647,7 +16941,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 694, + "rank": 705, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/516028?v=4", "bio": null, @@ -16665,7 +16959,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 695, + "rank": 706, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1096670?v=4", "bio": null, @@ -16683,7 +16977,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 696, + "rank": 707, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/870747?v=4", "bio": null, @@ -16701,7 +16995,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 697, + "rank": 708, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9839957?v=4", "bio": null, @@ -16719,7 +17013,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 698, + "rank": 709, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3167934?v=4", "bio": null, @@ -16737,7 +17031,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 699, + "rank": 710, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/198571?v=4", "bio": "Software dev, @phpmx founder\r\n\r\n#Linux #Laravel #Kubernetes #Symfony #Drupal #Python #Docker #OpenSource\r\n", @@ -16755,7 +17049,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 700, + "rank": 711, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10699738?v=4", "bio": "Apasionado por el mundo JavaScript, Ingeniero de Sistemas, y en camino a ser un buen full-stack JS developer.", @@ -16773,7 +17067,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 701, + "rank": 712, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/15091453?v=4", "bio": null, @@ -16791,7 +17085,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 702, + "rank": 713, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/487124?v=4", "bio": "PHP developer passionate about crafting high-quality code, mainly with Sylius and Sulu frameworks. ", @@ -16801,38 +17095,38 @@ "blog": "https://www.studiowaaz.com" }, { - "login": "eko", + "login": "electricBonfire", "repos": [ { - "repo": "core", + "repo": "create-client", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/create-client" } ], - "rank": 703, + "rank": 714, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/103900?v=4", - "bio": "🇫🇷 Freelance web architect who loves code and infrastructure. Issue solver around various technologies.", - "name": "Vincent Composieux", - "location": "Annecy, France", - "company": "Freelance", - "blog": "https://vincent.composieux.fr" + "avatar_url": "https://avatars.githubusercontent.com/u/1235763?v=4", + "bio": null, + "name": "Shawn Northrop", + "location": "Oregon, USA", + "company": null, + "blog": "" }, { - "login": "electricBonfire", + "login": "elliotbruneel", "repos": [ { - "repo": "create-client", + "repo": "core", "contributions": 1, - "url": "https://github.com/api-platform/create-client" + "url": "https://github.com/api-platform/core" } ], - "rank": 704, + "rank": 715, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1235763?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/37578863?v=4", "bio": null, - "name": "Shawn Northrop", - "location": "Oregon, USA", + "name": "Elliot", + "location": "Grenoble", "company": null, "blog": "" }, @@ -16845,7 +17139,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 705, + "rank": 716, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/35470921?v=4", "bio": "MS Computer Science with a focus on Machine Learning and Computer Vision. Full-time software developer at @Intel.", @@ -16863,7 +17157,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 706, + "rank": 717, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/362286?v=4", "bio": "Web, PHP, eZ Platform / Ibexa & certified Symfony/Twig developer. A geek.", @@ -16881,7 +17175,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 707, + "rank": 718, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7689512?v=4", "bio": "Software Engineer at @utrustdev", @@ -16890,6 +17184,24 @@ "company": "@utrustdev", "blog": "" }, + { + "login": "eneko-koraliving", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + } + ], + "rank": 719, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/190071255?v=4", + "bio": null, + "name": null, + "location": null, + "company": null, + "blog": "" + }, { "login": "eraac", "repos": [ @@ -16899,7 +17211,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 708, + "rank": 720, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5497623?v=4", "bio": "SRE at AB Tasty", @@ -16917,10 +17229,10 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 709, + "rank": 721, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1271407?v=4", - "bio": "Programmer", + "bio": "Software Architect", "name": "Erico Vasconcelos", "location": null, "company": "@ETTBrasil ", @@ -16935,7 +17247,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 710, + "rank": 722, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/869693?v=4", "bio": null, @@ -16953,7 +17265,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 711, + "rank": 723, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1116116?v=4", "bio": "\r\n PHP Developer\r\n", @@ -16971,7 +17283,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 712, + "rank": 724, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/60115888?v=4", "bio": "💻 🐘 PHP Lead Dev Consultant\r\n -- \r\n\r\n🧱 Symfony enthousiast -- @bakslashHQ Collaborator", @@ -16980,6 +17292,24 @@ "company": "Bludevon", "blog": "" }, + { + "login": "florentdrousset", + "repos": [ + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 725, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/45320122?v=4", + "bio": null, + "name": "Florent Drousset", + "location": "Toulouse, France", + "company": null, + "blog": "https://akainotes.org" + }, { "login": "florinceleapca", "repos": [ @@ -16989,7 +17319,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 713, + "rank": 726, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/42182076?v=4", "bio": null, @@ -17007,7 +17337,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 714, + "rank": 727, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/549369?v=4", "bio": null, @@ -17025,7 +17355,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 715, + "rank": 728, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7473665?v=4", "bio": "Back-end Developer, Symfony framework enthusiast :heart:", @@ -17043,7 +17373,7 @@ "url": "https://github.com/api-platform/metadata" } ], - "rank": 716, + "rank": 729, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/84379080?v=4", "bio": null, @@ -17061,7 +17391,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 717, + "rank": 730, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3305030?v=4", "bio": "symfony dev since 2011", @@ -17079,7 +17409,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 718, + "rank": 731, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1269390?v=4", "bio": null, @@ -17097,7 +17427,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 719, + "rank": 732, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/136336424?v=4", "bio": null, @@ -17115,7 +17445,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 720, + "rank": 733, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/421597?v=4", "bio": "PHP & Node.js Developer", @@ -17133,7 +17463,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 721, + "rank": 734, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/25979809?v=4", "bio": null, @@ -17151,7 +17481,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 722, + "rank": 735, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10700464?v=4", "bio": null, @@ -17169,7 +17499,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 723, + "rank": 736, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/387648?v=4", "bio": "I’m a full-stack web developer with 20+ years of experience.", @@ -17187,7 +17517,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 724, + "rank": 737, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7810053?v=4", "bio": "Puzzles, puzzles everywhere!", @@ -17205,7 +17535,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 725, + "rank": 738, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8518239?v=4", "bio": null, @@ -17223,7 +17553,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 726, + "rank": 739, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/965689?v=4", "bio": null, @@ -17241,7 +17571,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 727, + "rank": 740, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1622353?v=4", "bio": null, @@ -17259,7 +17589,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 728, + "rank": 741, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3619476?v=4", "bio": null, @@ -17277,7 +17607,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 729, + "rank": 742, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/401993?v=4", "bio": "Dev back et caetera", @@ -17295,7 +17625,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 730, + "rank": 743, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/152367?v=4", "bio": null, @@ -17313,7 +17643,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 731, + "rank": 744, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5052984?v=4", "bio": "Freelance PHP Web developer. Addicted to Symfony framework since 2013.", @@ -17331,7 +17661,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 732, + "rank": 745, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/334907?v=4", "bio": "Software Engineer", @@ -17349,10 +17679,10 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 733, + "rank": 746, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/235550?v=4", - "bio": "Senior Software Lead Developer\r\nPreviously, Senior Software Architect at @sensiolabs & @dayuseio\r\nCreator of Apprendre-PHP.com\r\nBook author & speaker", + "bio": "Senior Software Lead Developer\r\nFreelancer @ KODERO\r\nFormer tech lead @sensiolabs & @dayuseio\r\nCreator of Apprendre-PHP.com\r\nBook author & speaker", "name": "Hugo Hamon", "location": "Paris, France", "company": "KODERO SAS", @@ -17367,7 +17697,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 734, + "rank": 747, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1614615?v=4", "bio": null, @@ -17385,7 +17715,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 735, + "rank": 748, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1334026?v=4", "bio": null, @@ -17403,7 +17733,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 736, + "rank": 749, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4316743?v=4", "bio": null, @@ -17421,7 +17751,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 737, + "rank": 750, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/67441578?v=4", "bio": null, @@ -17439,7 +17769,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 738, + "rank": 751, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/53101?v=4", "bio": null, @@ -17457,7 +17787,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 739, + "rank": 752, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13620718?v=4", "bio": null, @@ -17475,13 +17805,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 740, + "rank": 753, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1699735?v=4", "bio": null, "name": "Gregory", "location": "Paris - France", - "company": "Fairness", + "company": "Radio France", "blog": "" }, { @@ -17493,7 +17823,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 741, + "rank": 754, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13260307?v=4", "bio": "PHP - Symfony Certified Developer Freelancer trainer \r\nEx @sensiolabs @DirIPS @Greenflex @DigitalNYou\r\n", @@ -17511,7 +17841,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 742, + "rank": 755, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10237885?v=4", "bio": null, @@ -17529,7 +17859,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 743, + "rank": 756, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3932407?v=4", "bio": null, @@ -17547,7 +17877,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 744, + "rank": 757, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6392429?v=4", "bio": null, @@ -17565,7 +17895,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 745, + "rank": 758, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5463371?v=4", "bio": null, @@ -17583,7 +17913,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 746, + "rank": 759, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6679750?v=4", "bio": null, @@ -17601,7 +17931,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 747, + "rank": 760, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1665948?v=4", "bio": null, @@ -17619,7 +17949,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 748, + "rank": 761, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/38564918?v=4", "bio": null, @@ -17637,7 +17967,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 749, + "rank": 762, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1262628?v=4", "bio": null, @@ -17655,7 +17985,7 @@ "url": "https://github.com/api-platform/elasticsearch" } ], - "rank": 750, + "rank": 763, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1324077?v=4", "bio": null, @@ -17673,7 +18003,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 751, + "rank": 764, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4689360?v=4", "bio": null, @@ -17691,7 +18021,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 752, + "rank": 765, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1225931?v=4", "bio": null, @@ -17709,7 +18039,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 753, + "rank": 766, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3493941?v=4", "bio": "Backend web developer, certified Laravel developer, PHP & Go\r\n\r\nCreator of https://tabletopfinder.eu", @@ -17727,7 +18057,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 754, + "rank": 767, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/428556?v=4", "bio": null, @@ -17745,7 +18075,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 755, + "rank": 768, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14272131?v=4", "bio": "Software developer since 2008", @@ -17763,7 +18093,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 756, + "rank": 769, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1837566?v=4", "bio": "Expert en infrastructure cloud, en architecture micro-services et en solutions IoT, je suis spécialisé dans les technologies de Smart Building.", @@ -17781,7 +18111,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 757, + "rank": 770, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/28010598?v=4", "bio": null, @@ -17799,7 +18129,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 758, + "rank": 771, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11443300?v=4", "bio": null, @@ -17808,6 +18138,24 @@ "company": null, "blog": "" }, + { + "login": "josbeir", + "repos": [ + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" + } + ], + "rank": 772, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/26058?v=4", + "bio": "Freelance full-stack developer and CakePHP core member. I build robust web solutions, specializing in Drupal and CakePHP.", + "name": "Jasper Smet", + "location": "Oudenaarde, Belgium", + "company": null, + "blog": "http://www.jaspersmet.be" + }, { "login": "jpierront", "repos": [ @@ -17817,7 +18165,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 759, + "rank": 773, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1228441?v=4", "bio": null, @@ -17835,7 +18183,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 760, + "rank": 774, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/106443?v=4", "bio": "I like stupid hacks, like http://😁.xmtp.net", @@ -17853,7 +18201,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 761, + "rank": 775, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6794810?v=4", "bio": "Hello World", @@ -17871,7 +18219,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 762, + "rank": 776, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7212435?v=4", "bio": "Geek level 27 | Développeur Web", @@ -17889,7 +18237,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 763, + "rank": 777, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7237008?v=4", "bio": null, @@ -17907,7 +18255,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 764, + "rank": 778, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/548449?v=4", "bio": null, @@ -17925,7 +18273,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 765, + "rank": 779, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/45685876?v=4", "bio": null, @@ -17943,7 +18291,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 766, + "rank": 780, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7765660?v=4", "bio": "Code enthusiast from my 7.\r\nI develop video games and web apps. \r\nMy main loves are C++, php, Unreal Engine, Symfony, and the JetBrains' IDEs. ", @@ -17961,7 +18309,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 767, + "rank": 781, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/74016280?v=4", "bio": null, @@ -17979,7 +18327,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 768, + "rank": 782, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5073617?v=4", "bio": null, @@ -17997,7 +18345,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 769, + "rank": 783, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1562675?v=4", "bio": null, @@ -18015,7 +18363,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 770, + "rank": 784, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23117971?v=4", "bio": null, @@ -18033,7 +18381,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 771, + "rank": 785, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/193112?v=4", "bio": null, @@ -18051,7 +18399,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 772, + "rank": 786, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/605742?v=4", "bio": "I write code.", @@ -18060,6 +18408,24 @@ "company": "PBLWorks", "blog": "https://kostasbariotis.com" }, + { + "login": "kentrichards", + "repos": [ + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 787, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/35854135?v=4", + "bio": null, + "name": "Kent Richards", + "location": "Halifax, Nova Scotia", + "company": null, + "blog": "https://kentrichards.com" + }, { "login": "kevholmes", "repos": [ @@ -18069,7 +18435,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 773, + "rank": 788, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2589943?v=4", "bio": "Building scalable info systems on-premise and in-cloud. ", @@ -18087,7 +18453,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 774, + "rank": 789, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/157602645?v=4", "bio": null, @@ -18105,7 +18471,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 775, + "rank": 790, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2345927?v=4", "bio": null, @@ -18123,7 +18489,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 776, + "rank": 791, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/31816531?v=4", "bio": "Exploring the field of Computer Engineering.......", @@ -18141,7 +18507,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 777, + "rank": 792, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1876331?v=4", "bio": "Lead full stack developer\r\n📍Paris\r\n", @@ -18159,7 +18525,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 778, + "rank": 793, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/92924074?v=4", "bio": null, @@ -18177,7 +18543,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 779, + "rank": 794, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/81818138?v=4", "bio": null, @@ -18195,7 +18561,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 780, + "rank": 795, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4620699?v=4", "bio": null, @@ -18213,7 +18579,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 781, + "rank": 796, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/94551625?v=4", "bio": null, @@ -18231,7 +18597,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 782, + "rank": 797, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1088155?v=4", "bio": null, @@ -18249,7 +18615,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 783, + "rank": 798, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/763873?v=4", "bio": null, @@ -18267,7 +18633,7 @@ "url": "https://github.com/api-platform/api-pack" } ], - "rank": 784, + "rank": 799, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1174532?v=4", "bio": "I am a PHP and Perl developer, also with experience in the Java ecosystem; in addition, I am a long time open source community member and Linux Administrator.", @@ -18285,7 +18651,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 785, + "rank": 800, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/81240?v=4", "bio": null, @@ -18303,7 +18669,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 786, + "rank": 801, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13121784?v=4", "bio": null, @@ -18321,7 +18687,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 787, + "rank": 802, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10156301?v=4", "bio": null, @@ -18339,7 +18705,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 788, + "rank": 803, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4265745?v=4", "bio": null, @@ -18357,7 +18723,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 789, + "rank": 804, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/33978796?v=4", "bio": null, @@ -18375,7 +18741,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 790, + "rank": 805, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/34691216?v=4", "bio": "Infrastructure Engineer\r\n@Cloud-Algebra ", @@ -18393,7 +18759,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 791, + "rank": 806, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3955802?v=4", "bio": null, @@ -18411,7 +18777,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 792, + "rank": 807, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/16276382?v=4", "bio": null, @@ -18429,7 +18795,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 793, + "rank": 808, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/52066916?v=4", "bio": null, @@ -18447,7 +18813,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 794, + "rank": 809, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11940560?v=4", "bio": null, @@ -18465,7 +18831,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 795, + "rank": 810, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/35062298?v=4", "bio": null, @@ -18483,7 +18849,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 796, + "rank": 811, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/55245291?v=4", "bio": null, @@ -18501,7 +18867,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 797, + "rank": 812, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/94405658?v=4", "bio": null, @@ -18519,7 +18885,7 @@ "url": "https://github.com/api-platform/postman-collection-generator" } ], - "rank": 798, + "rank": 813, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4295444?v=4", "bio": null, @@ -18537,7 +18903,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 799, + "rank": 814, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/61539540?v=4", "bio": null, @@ -18555,7 +18921,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 800, + "rank": 815, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5319267?v=4", "bio": "Full stack dev. ", @@ -18573,7 +18939,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 801, + "rank": 816, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1532615?v=4", "bio": "PHP Consultant & Trainer", @@ -18591,7 +18957,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 802, + "rank": 817, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/32196785?v=4", "bio": null, @@ -18609,7 +18975,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 803, + "rank": 818, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/53557695?v=4", "bio": "PHP, Symfony Developer / Open Source Contributor", @@ -18627,7 +18993,7 @@ "url": "https://github.com/api-platform/graphql" } ], - "rank": 804, + "rank": 819, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/107232?v=4", "bio": null, @@ -18645,11 +19011,11 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 805, + "rank": 820, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11818237?v=4", "bio": null, - "name": "Larmuze", + "name": "mgiraud", "location": null, "company": null, "blog": "" @@ -18663,7 +19029,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 806, + "rank": 821, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1128849?v=4", "bio": "M.S. Computer Science. Author of the Caddy Web Server, CertMagic, Papa Parse, JSON/curl-to-Go, Timelinize, and other random stuff...", @@ -18681,7 +19047,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 807, + "rank": 822, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/82501?v=4", "bio": "Assistant Professor in the Department of Computer Science at the Rochester Institute of Technology", @@ -18699,7 +19065,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 808, + "rank": 823, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3224226?v=4", "bio": null, @@ -18717,7 +19083,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 809, + "rank": 824, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/35091?v=4", "bio": null, @@ -18735,7 +19101,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 810, + "rank": 825, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7735145?v=4", "bio": "Little maniac, with great plans", @@ -18753,7 +19119,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 811, + "rank": 826, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23735276?v=4", "bio": "Fullstack JS developer / Code cleaner", @@ -18771,7 +19137,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 812, + "rank": 827, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/720328?v=4", "bio": "👋 Open-source builder", @@ -18789,7 +19155,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 813, + "rank": 828, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13241270?v=4", "bio": "hi", @@ -18807,7 +19173,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 814, + "rank": 829, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2636183?v=4", "bio": "Mere open-source enthusiast trying to navigate and survive the multiverse we're in", @@ -18825,7 +19191,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 815, + "rank": 830, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19224748?v=4", "bio": null, @@ -18843,7 +19209,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 816, + "rank": 831, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/98848360?v=4", "bio": null, @@ -18861,7 +19227,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 817, + "rank": 832, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1771206?v=4", "bio": "Freelance Web Developer", @@ -18879,7 +19245,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 818, + "rank": 833, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23331779?v=4", "bio": null, @@ -18897,7 +19263,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 819, + "rank": 834, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1773356?v=4", "bio": "I'm building FEATURE 🏗️\r\n\r\nWeb3 Dev Tool to incentive Devs to fix Github Issues 🐙 \r\n\r\n#buidl maximalist 🦄", @@ -18915,7 +19281,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 820, + "rank": 835, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8603325?v=4", "bio": "Eat, Code, Sleep and Travel", @@ -18933,7 +19299,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 821, + "rank": 836, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6339309?v=4", "bio": "Back-end Developer @ Yousign", @@ -18951,7 +19317,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 822, + "rank": 837, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1086726?v=4", "bio": null, @@ -18969,7 +19335,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 823, + "rank": 838, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/531753?v=4", "bio": "I develop web based application.", @@ -18987,7 +19353,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 824, + "rank": 839, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/95935?v=4", "bio": null, @@ -19005,7 +19371,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 825, + "rank": 840, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/78213?v=4", "bio": "Co-founder of @cleverage, advocate of a pragmatic use of standard Web technologies.\r\n\r\nPhotographer: https://nicolas-hoizey.photo/", @@ -19023,10 +19389,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 826, + "rank": 841, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/22686876?v=4", - "bio": "MSc Student of Computer Science at the University of Bari", + "bio": "AI Graduate Research Fellow at the University of Bari", "name": "Niccolò Petti", "location": "Italy", "company": null, @@ -19041,7 +19407,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 827, + "rank": 842, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/619752?v=4", "bio": "PHP Developper", @@ -19059,7 +19425,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 828, + "rank": 843, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2195862?v=4", "bio": null, @@ -19068,42 +19434,6 @@ "company": null, "blog": "" }, - { - "login": "npotier", - "repos": [ - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 829, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1151094?v=4", - "bio": "I'm the founder of @acseo , a French Consulting and Development Agency based in the south of France.", - "name": "Nicolas Potier", - "location": "Aix-en-Provence", - "company": "ACSEO", - "blog": "http://www.acseo.fr" - }, - { - "login": "nspyke", - "repos": [ - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 830, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/901747?v=4", - "bio": "Developer & Entrepreneur", - "name": "Nik Spijkerman", - "location": null, - "company": "nspyke", - "blog": "https://nspyke.com" - }, { "login": "numediaweb", "repos": [ @@ -19113,7 +19443,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 831, + "rank": 844, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/288614?v=4", "bio": "I am a full stack web developer with more than a decade of experience in software development.", @@ -19131,10 +19461,10 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 832, + "rank": 845, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/25424263?v=4", - "bio": "I use GitLab for most things.", + "bio": "Just another Unix nerd.\r\n\r\nI use GitLab for my own projects (see the link).", "name": "Douglas Silva", "location": "Brazil", "company": null, @@ -19149,12 +19479,12 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 833, + "rank": 846, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/46002955?v=4", "bio": null, "name": null, - "location": "Paris", + "location": null, "company": null, "blog": "https://onadrog.github.io/" }, @@ -19167,7 +19497,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 834, + "rank": 847, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2412041?v=4", "bio": null, @@ -19185,7 +19515,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 835, + "rank": 848, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2588533?v=4", "bio": null, @@ -19203,10 +19533,10 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 836, + "rank": 849, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/28441561?v=4", - "bio": "an undergraduate and a backend engineer at @zeabur", + "bio": "an undergraduate and a platform engineer at @zeabur", "name": "Yi-Jyun Pan", "location": "Taiwan", "company": "@zeabur", @@ -19221,7 +19551,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 837, + "rank": 850, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4503898?v=4", "bio": "Tech lover, Docker certified, arduino hacker wannabe", @@ -19239,7 +19569,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 838, + "rank": 851, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2878951?v=4", "bio": "I think I can program. ", @@ -19257,7 +19587,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 839, + "rank": 852, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5345273?v=4", "bio": "@mongodb Senior Software Engineer on the PHP DBX team ", @@ -19275,7 +19605,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 840, + "rank": 853, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8417078?v=4", "bio": null, @@ -19293,7 +19623,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 841, + "rank": 854, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/442924?v=4", "bio": null, @@ -19311,10 +19641,10 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 842, + "rank": 855, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1866496?v=4", - "bio": "Retired Gladiator / Web3 Enthusiast / PHP & Symfony expert / Powered by Caffeine / SSE @sezane ", + "bio": "Retired Gladiator / AI Enthusiast / PHP & Symfony expert / Powered by Caffeine / SSE @sezane ", "name": "Pierre Grimaud", "location": "Paris, France", "company": "@sezane", @@ -19329,7 +19659,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 843, + "rank": 856, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/12457261?v=4", "bio": "Web Developer\r\nPHP - Golang - Javascript", @@ -19347,7 +19677,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 844, + "rank": 857, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6864389?v=4", "bio": null, @@ -19365,13 +19695,13 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 845, + "rank": 858, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/204451?v=4", - "bio": "Co-founder and CEO of @akawaka and @vanoix\r\n\r\nPresent: CTO for @cfc-to ", + "bio": "Co-founder and CEO of @vanoix. Founder of @akawaka and @d11n-studio. Working on stuff with a lot of LOCs", "name": "Alexandre Balmes", "location": "Lyon, France", - "company": "@vanoix @akawaka", + "company": "@vanoix @akawaka @d11n-studio", "blog": "https://alexandre.balmes.co" }, { @@ -19383,7 +19713,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 846, + "rank": 859, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1194439?v=4", "bio": null, @@ -19401,7 +19731,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 847, + "rank": 860, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2283090?v=4", "bio": null, @@ -19419,7 +19749,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 848, + "rank": 861, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1135425?v=4", "bio": null, @@ -19437,7 +19767,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 849, + "rank": 862, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2815664?v=4", "bio": null, @@ -19455,7 +19785,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 850, + "rank": 863, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/479917?v=4", "bio": null, @@ -19473,7 +19803,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 851, + "rank": 864, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5188832?v=4", "bio": null, @@ -19491,7 +19821,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 852, + "rank": 865, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2874965?v=4", "bio": null, @@ -19509,7 +19839,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 853, + "rank": 866, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/145816?v=4", "bio": "🎓 Building @RawkodeAcademy\r\n\r\n⇢ http://rawkode.academy\r\n⇢ http://rawkode.chat (Zulip)\r\n⇢ http://rawkode.live (YouTube)", @@ -19527,7 +19857,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 854, + "rank": 867, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/548656?v=4", "bio": null, @@ -19545,7 +19875,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 855, + "rank": 868, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/144770208?v=4", "bio": "Compte département MMI - IUT de Troyes", @@ -19563,7 +19893,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 856, + "rank": 869, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/30264618?v=4", "bio": null, @@ -19581,7 +19911,7 @@ "url": "https://github.com/api-platform/json-schema" } ], - "rank": 857, + "rank": 870, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8590822?v=4", "bio": "Student at University Leipzig", @@ -19599,7 +19929,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 858, + "rank": 871, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1652160?v=4", "bio": null, @@ -19617,7 +19947,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 859, + "rank": 872, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2812673?v=4", "bio": "I have moved most of my repositories to Codeberg (see link below).\r\nIf you can't find something here, it's likely there already.", @@ -19635,7 +19965,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 860, + "rank": 873, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11267554?v=4", "bio": "Developer at ITK Development (Aarhus Kommune)", @@ -19653,13 +19983,13 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 861, + "rank": 874, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14221532?v=4", "bio": null, "name": "Rokas Mikalkėnas", "location": "Vilnius, Lithuania", - "company": "evergrowth.io", + "company": null, "blog": "" }, { @@ -19671,14 +20001,14 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 862, + "rank": 875, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19284102?v=4", - "bio": "Co-Founder & Head of Engineering @LicenceOne\r\n", + "bio": "DevOps @CleverConnect", "name": "Rémy", "location": "La Rochelle - France", - "company": "LicenceOne", - "blog": "https://www.licence.one" + "company": "CleverConnect", + "blog": "" }, { "login": "robertfausk", @@ -19689,7 +20019,7 @@ "url": "https://github.com/api-platform/docker-compose-prod" } ], - "rank": 863, + "rank": 876, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1651297?v=4", "bio": null, @@ -19707,7 +20037,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 864, + "rank": 877, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1553083?v=4", "bio": "armless software engineer", @@ -19725,7 +20055,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 865, + "rank": 878, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/137574?v=4", "bio": null, @@ -19743,7 +20073,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 866, + "rank": 879, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8062558?v=4", "bio": null, @@ -19761,7 +20091,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 867, + "rank": 880, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2140469?v=4", "bio": null, @@ -19779,7 +20109,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 868, + "rank": 881, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5607440?v=4", "bio": "https://sad270.github.io/", @@ -19797,7 +20127,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 869, + "rank": 882, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9380313?v=4", "bio": "Hi", @@ -19815,7 +20145,7 @@ "url": "https://github.com/api-platform/openapi" } ], - "rank": 870, + "rank": 883, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1635587?v=4", "bio": null, @@ -19833,7 +20163,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 871, + "rank": 884, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1235888?v=4", "bio": null, @@ -19851,7 +20181,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 872, + "rank": 885, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5504250?v=4", "bio": "Go/Rust разработчик с 10 стажем.\r\nВ прошлом Full Stack.", @@ -19869,7 +20199,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 873, + "rank": 886, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6454986?v=4", "bio": "Software developer based in Zurich.", @@ -19887,7 +20217,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 874, + "rank": 887, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1470048?v=4", "bio": null, @@ -19905,7 +20235,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 875, + "rank": 888, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4922264?v=4", "bio": null, @@ -19923,7 +20253,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 876, + "rank": 889, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2197902?v=4", "bio": null, @@ -19932,6 +20262,24 @@ "company": "2LE", "blog": "https://www.2le.net" }, + { + "login": "senaria", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 890, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/5164586?v=4", + "bio": null, + "name": "Sandro Hopf", + "location": "Berlin", + "company": "Universal Units GmbH", + "blog": "" + }, { "login": "sergerdn", "repos": [ @@ -19941,7 +20289,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 877, + "rank": 891, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/64213648?v=4", "bio": null, @@ -19959,13 +20307,13 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 878, + "rank": 892, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/408570?v=4", "bio": "Engineer", "name": "Seth Vargo", "location": "Pittsburgh, PA", - "company": "@Google", + "company": "@LinkedIn", "blog": "https://www.sethvargo.com" }, { @@ -19977,7 +20325,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 879, + "rank": 893, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1188509?v=4", "bio": "Software engineer", @@ -19995,14 +20343,14 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 880, + "rank": 894, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/32362757?v=4", "bio": "building isotope agents\r\ne/acc ", "name": "Silvia O'Dwyer", - "location": "localhost:7000", + "location": null, "company": null, - "blog": "https://isotopeagents.com" + "blog": "" }, { "login": "skalrayi", @@ -20013,7 +20361,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 881, + "rank": 895, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19673430?v=4", "bio": "hello there.", @@ -20031,12 +20379,12 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 882, + "rank": 896, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2412608?v=4", "bio": "Let me be what I wanna be", "name": "Arnaud Becher", - "location": "Strasbourg (France)", + "location": "Saverne (France)", "company": null, "blog": "https://smknstd.github.io" }, @@ -20049,7 +20397,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 883, + "rank": 897, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/48355747?v=4", "bio": null, @@ -20067,7 +20415,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 884, + "rank": 898, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5120127?v=4", "bio": null, @@ -20085,7 +20433,7 @@ "url": "https://github.com/api-platform/serializer" } ], - "rank": 885, + "rank": 899, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8626620?v=4", "bio": null, @@ -20103,7 +20451,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 886, + "rank": 900, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10502887?v=4", "bio": null, @@ -20112,42 +20460,6 @@ "company": null, "blog": "" }, - { - "login": "tbuczen", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 887, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/7297543?v=4", - "bio": "full-time web-developer, karaoke DJ, singer, shooter, hitchhiker, crafter, larper, human", - "name": "Tomasz Buczeń", - "location": "In a Cave, Spain", - "company": "URIAS", - "blog": "http://www.urias.it" - }, - { - "login": "tgalopin", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 888, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1651494?v=4", - "bio": null, - "name": "Titouan Galopin", - "location": "France", - "company": "@citipo", - "blog": "https://titouangalopin.com" - }, { "login": "thatsLegit", "repos": [ @@ -20157,7 +20469,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 889, + "rank": 901, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/54280083?v=4", "bio": "I'm passionate about web services, developing desktop, mobile and browser apps.", @@ -20175,7 +20487,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 890, + "rank": 902, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5716720?v=4", "bio": "Technical Lead Manager | Frontend Specialist | Building scalable UIs | mentoring teams & shipping impact", @@ -20185,7 +20497,7 @@ "blog": "https://hoeppner.fyi" }, { - "login": "thomasglachant", + "login": "thomas-hiron", "repos": [ { "repo": "core", @@ -20193,17 +20505,17 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 891, + "rank": 903, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1681865?v=4", - "bio": null, - "name": "Thomas Glachant", - "location": "Lille, France", - "company": "@stadline ", - "blog": "" + "avatar_url": "https://avatars.githubusercontent.com/u/4216436?v=4", + "bio": "Lead developer in Annecy, France. DevOps, PHP, JS", + "name": "Thomas Hiron", + "location": "Annecy", + "company": null, + "blog": "https://www.thomas-hiron.com" }, { - "login": "timonf", + "login": "thomasglachant", "repos": [ { "repo": "core", @@ -20211,13 +20523,13 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 892, + "rank": 904, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/546813?v=4", - "bio": "Web developer located in Cologne", - "name": "Timon", - "location": "Cologne, Germany", - "company": null, + "avatar_url": "https://avatars.githubusercontent.com/u/1681865?v=4", + "bio": null, + "name": "Thomas Glachant", + "location": "Lille, France", + "company": "@stadline ", "blog": "" }, { @@ -20229,7 +20541,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 893, + "rank": 905, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5413075?v=4", "bio": null, @@ -20247,7 +20559,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 894, + "rank": 906, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/637350?v=4", "bio": null, @@ -20265,7 +20577,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 895, + "rank": 907, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/588128?v=4", "bio": null, @@ -20283,7 +20595,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 896, + "rank": 908, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2133349?v=4", "bio": null, @@ -20292,42 +20604,6 @@ "company": "@mrge-group", "blog": "https://www.capagcuan.org" }, - { - "login": "trsteel88", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 897, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/869933?v=4", - "bio": null, - "name": "Trent Steel", - "location": "Brisbane", - "company": "@VivoGroupAu", - "blog": "" - }, - { - "login": "tseho", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 898, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1421130?v=4", - "bio": "Software Engineer", - "name": "Quentin Favrie", - "location": "France", - "company": null, - "blog": "" - }, { "login": "tworzenieweb", "repos": [ @@ -20337,7 +20613,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 899, + "rank": 909, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/741378?v=4", "bio": null, @@ -20355,7 +20631,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 900, + "rank": 910, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2059767?v=4", "bio": null, @@ -20364,6 +20640,24 @@ "company": null, "blog": "https://xcep.net" }, + { + "login": "tyx", + "repos": [ + { + "repo": "state", + "contributions": 1, + "url": "https://github.com/api-platform/state" + } + ], + "rank": 911, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/245494?v=4", + "bio": "DDD in love", + "name": "Timothée Barray", + "location": "Marseille", + "company": "@gogaille", + "blog": "" + }, { "login": "virtualize", "repos": [ @@ -20373,7 +20667,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 901, + "rank": 912, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/220102?v=4", "bio": null, @@ -20391,7 +20685,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 902, + "rank": 913, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2380100?v=4", "bio": "Occasional contributor, Solution Architect @Namecheap", @@ -20409,7 +20703,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 903, + "rank": 914, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/56051809?v=4", "bio": null, @@ -20427,7 +20721,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 904, + "rank": 915, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/394523?v=4", "bio": null, @@ -20437,7 +20731,7 @@ "blog": "" }, { - "login": "wouterj", + "login": "wizhippo", "repos": [ { "repo": "mercure", @@ -20445,32 +20739,32 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 905, + "rank": 916, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/749025?v=4", - "bio": "Part of @symfony docs and core team & all-round Symfony enthusiast.\r\n\r\nDevOps Engineer at @MyWheels ", - "name": "Wouter de Jong", - "location": "Netherlands", - "company": "MyWheels", - "blog": "http://wouterj.nl" + "avatar_url": "https://avatars.githubusercontent.com/u/1456102?v=4", + "bio": null, + "name": "Douglas Hammond", + "location": null, + "company": null, + "blog": "" }, { - "login": "wow-apps", + "login": "wouterj", "repos": [ { - "repo": "docs", + "repo": "mercure", "contributions": 1, - "url": "https://github.com/api-platform/docs" + "url": "https://github.com/dunglas/mercure" } ], - "rank": 906, + "rank": 917, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/2779949?v=4", - "bio": "CTO / Principal Software Architect", - "name": "Oleksii Samara", - "location": "Limassol, Cyprus", - "company": "@symfony, @api-platform, @ExaltyCom", - "blog": "https://wildsoft.io" + "avatar_url": "https://avatars.githubusercontent.com/u/749025?v=4", + "bio": "Part of @symfony docs and core team & all-round Symfony enthusiast.\r\n\r\nDevOps Engineer at @MyWheels ", + "name": "Wouter de Jong", + "location": "Netherlands", + "company": "MyWheels", + "blog": "http://wouterj.nl" }, { "login": "wuestkamp", @@ -20481,7 +20775,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 907, + "rank": 918, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1220600?v=4", "bio": "DevOps / Software Engineer / Kubernetes CKS CKA CKAD", @@ -20499,7 +20793,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 908, + "rank": 919, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5250708?v=4", "bio": null, @@ -20517,7 +20811,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 909, + "rank": 920, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/982291?v=4", "bio": null, @@ -20535,7 +20829,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 910, + "rank": 921, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1957048?v=4", "bio": null, @@ -20544,6 +20838,24 @@ "company": "OPEN Software Consulting", "blog": "" }, + { + "login": "xammmue", + "repos": [ + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 922, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/28672138?v=4", + "bio": null, + "name": "Max", + "location": null, + "company": null, + "blog": "" + }, { "login": "xrogers", "repos": [ @@ -20553,7 +20865,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 911, + "rank": 923, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1160871?v=4", "bio": null, @@ -20571,7 +20883,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 912, + "rank": 924, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/619509?v=4", "bio": null, @@ -20589,7 +20901,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 913, + "rank": 925, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2870859?v=4", "bio": null, @@ -20607,7 +20919,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 914, + "rank": 926, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1114453?v=4", "bio": null, @@ -20625,7 +20937,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 915, + "rank": 927, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/21998828?v=4", "bio": null, @@ -20643,7 +20955,7 @@ "url": "https://github.com/api-platform/metadata" } ], - "rank": 916, + "rank": 928, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/292402?v=4", "bio": "Senior PHP/Symfony backend developer @recisio / KaraFun Group ", @@ -20661,7 +20973,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 917, + "rank": 929, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/608984?v=4", "bio": null, @@ -20679,7 +20991,7 @@ "url": "https://github.com/api-platform/json-schema" } ], - "rank": 918, + "rank": 930, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/397425?v=4", "bio": "DevOps Engineer | Kubernetes | PHP", @@ -20697,7 +21009,7 @@ "url": "https://github.com/api-platform/laravel" } ], - "rank": 919, + "rank": 931, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/679513?v=4", "bio": "hello", @@ -20715,7 +21027,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 920, + "rank": 932, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/398739?v=4", "bio": null, @@ -20733,7 +21045,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 921, + "rank": 933, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7030232?v=4", "bio": null, diff --git a/pwa/i18n/dictionaries/en.json b/pwa/i18n/dictionaries/en.json index 0b9f0e2c..f250583f 100644 --- a/pwa/i18n/dictionaries/en.json +++ b/pwa/i18n/dictionaries/en.json @@ -250,7 +250,7 @@ } }, "2026": { - "baseline": "The flagship conference dedicated to API Platform and its ecosystem is coming back in 2026.", + "baseline": "The only conference dedicated to API Platform and its ecosystem is back on September 17–18, 2026!", "date": "September 17-18, 2026 - Lille & online", "missing_conferences": { "subtitle": "Subscribe to {{link}} to discover replay videos this winter!", @@ -259,8 +259,8 @@ }, "our_speakers": { "speaker": { "coming_soon": "coming soon" }, - "subtitle": "Our selected speakers will be revealed in {{edition}}. Want to be part of them? {{link}}", - "subtitle_link": "Contact us!", + "subtitle": "The Call for Papers is open until March 22. {{link}}!", + "subtitle_link": "Submit your talk now!", "title": "Our speakers" }, "venue": { @@ -268,6 +268,91 @@ "tip_title": "Important", "tip": "Hotel demand is very high in Lille at this time of year, so to make your travel easier, we have negotiated special prices. Take a look at the available rooms on {{tip_link}}, get a 10% discount on your stay, and book them as soon as possible with this code: TILLEULS25

This code is valid for the following hotels: Arbre Voyageur BW Premier Collection 4*, Best Western Why Premier 4*, Boa BW Signature Collection 4*, La Valiz 3*, Kanai 3*, and Le Rosa 3* for stays between 17th and 21st September.

This discount is available until 7th September 2025.", "tip_link": "this website" + }, + "cfp": { + "button" : "Submit your talk", + "title": "Call for papers", + "subtitle": "The call for papers for API Platform Conference 2026 is open until March 22. Final speakers will be announced starting May 12. Submit your pitch, and with a bit of luck, you could join us in September!", + "package": { + "title": "Speaker package", + "subtitle": "Speaker package includes:", + "point_1": "Travel to Lille covered (A maximum amount may apply depending on your country of residence)", + "point_2": "Speakers' dinner on Wednesday, September 16", + "point_3": "Entrance to the conference and to the community party on Thursday 17th", + "point_4": "Two hotel nights for speakers based in France, or three nights for speakers coming from outside France", + "point_5": "If your employer can cover your travel and hotel, we’re happy to list them as a sponsor. Employer sponsorship allows us to invite more international speakers to the conference.", + "point_6": "A gift box with some customized surprises." + }, + "techno": { + "title": "Talk us about your favorite techno!" + }, + "subject": { + "title": "Talk categories", + "subtitle": "We are looking forward to talks on (but not limited to) these topics:", + "button_subscribe": "Submit your pitch", + "categories": [ + { + "icon": "api-platform-ecosystem", + "title": "API Platform and its ecosystem", + "points": [ + "You have discovered new features, a use case, a migration story or a contribution to share with the API Platform framework.", + "You have built applications for real-world enterprise scenarios and your talk will showcase your development’s journey – from initial adoption to implementation.", + "You have used API Platform as a key tool in your API design." + ] + }, + { + "icon": "going-further-api-p", + "title": "Going further with API Platform", + "points": [ + "JavaScript - API Platform is not only about PHP: in addition to its powerful admin generator, API Platform also features a client generator capable of scaffolding fully functional applications with Next.js, Nuxt.js, React/Redux, Vue.js, Quasar, and Vuetify for both PWAs and SPAs. Share your insights, contributions, and discoveries about it!", + "Devops - you host or you have deployed a project with API Platform: tell us about it!", + "Share your experiments on using AI on your web project." + ] + }, + { + "icon": "franken-php", + "title": "High-Performance PHP with FrankenPHP", + "points": [ + "You’ve optimized your application’s performance or migrated it with FrankenPHP.", + "You’ve deployed FrankenPHP natively or using a cloud hosting solution. Share your feedback with us!", + "You are leveraging FrankenPHP’s latest features to improve developer experience, extensibility, and background processing.", + "We also welcome talks on FrankenPHP’s runtime model, production usage, observability, deployment strategies, migrations to worker mode, ecosystem integrations, and lessons learned from real-world projects." + ] + }, + { + "icon": "real-time", + "title": "Mercure & Real-Time Web", + "points": [ + "We are interested in talks around Mercure and real-time web architectures, including real-world use cases, architectural choices, security considerations, and production feedback." + ] + }, + { + "icon": "frameworks", + "title": "Frameworks and tools", + "points": [ + "Share with us your findings or best practices regarding tools from the PHP ecosystem.", + "Tell us about the tools and good practices you use to build your software’s architecture. " + ] + }, + { + "icon": "society", + "title": "Society", + "points": [ + "Different management, corporate culture, mental health, agility, or the struggle for greater diversity and inclusion in tech... We always open the floor to more cross-cutting topics during our event." + ] + } + ] + }, + "informations": "Informations", + "point_1": "The API Platform Conference is an international event held in France, featuring two parallel tracks over two days in both English and French.", + "point_2": "The talks are 20 or 40 min (Q&A included).", + "point_3": "Talks are limited to a maximum of two speakers for organizational reasons.", + "point_4": "AI can be a great help on a daily basis, but we encourage you to submit a talk that truly reflects your own voice and experience. We tend to recognize AI-generated content quite easily", + "point_5": "The event is hybrid: your talk will be streamed live online and recorded. Unless you advise otherwise, it will be published on our YouTube channel after the event.", + "point_6": "Submitting multiple proposals is encouraged, but it does not necessarily increase your chances of selection.", + "point_7": "While we prefer original content, submitting a previously presented conference topic is not grounds for elimination. Each talk is unique and never delivered in the same way.", + "point_8": "Speakers are expected to uphold the same Code of Conduct as attendees and staff.", + "button_subscribe": "Submit your pitch" } }, "an_event_by": "an event by", @@ -324,7 +409,8 @@ "schedule": "Schedule", "speakers": "Speakers", "sponsorship": "Sponsorship", - "venue": "Venue" + "venue": "Venue", + "cfp": "Call for papers" }, "title": "The event" } diff --git a/pwa/i18n/dictionaries/fr.json b/pwa/i18n/dictionaries/fr.json index 2635bf6c..d1313e2c 100644 --- a/pwa/i18n/dictionaries/fr.json +++ b/pwa/i18n/dictionaries/fr.json @@ -171,6 +171,7 @@ "buy": "Achetez vos tickets" }, "cfp": { + "button": "Postuler au CFP", "title": "Call for papers", "subtitle": "Le call for papers de l'API Platform Conference 2025 vient d'ouvrir, et est ouvert jusqu'au au 23 mars. Le programme sera annoncé à partir du 14 mai. Proposez-nous un sujet ! Avec un peu de chance, vous ferez partie des speakers de cette édition anniversaire.", "package": { @@ -245,12 +246,12 @@ } }, "2026": { - "baseline": "L'événement phare dédié à API Platform et son écosystème revient en 2026 !", + "baseline": "L'événement phare dédié à API Platform et son écosystème est de retour les 17 et 18 septembre à Lille !", "date": "17 et 18 septembre 2026 - Lille & en ligne", "our_speakers": { "speaker": { "coming_soon": "Prochainement" }, - "subtitle": "Nos speakers sélectionnés seront annoncés très prochainement. Vous souhaitez proposer un sujet ? {{link}}", - "subtitle_link": "Contactez-nous !", + "subtitle": "Le call for papers est ouvert jusqu'au 22 mars. {{link}} !", + "subtitle_link": "Proposez dès maintenant un sujet", "title": "Nos speakers" }, "missing_conferences": { @@ -260,6 +261,91 @@ }, "venue": { "subtitle": "L'API Platform Conference se déroulera à Lille, capitale des Flandres et carrefour des plus grandes villes européennes. Si vous ne pouvez pas venir sur place, vous pourrez acheter un billet pour suivre les conférences en ligne." + }, + "cfp": { + "button": "Postulez au CFP", + "title": "Call for papers", + "subtitle": "Le call for papers de l'API Platform Conference 2026 vient d'ouvrir, et est ouvert jusqu'au au 22 mars. Le programme sera annoncé à partir du 12 mai. Proposez-nous un sujet, et avec un peu de chance, vous ferez partie des speakers qui nous rejoindront en septembre !", + "package": { + "title": "Speaker package", + "subtitle": "Votre prise en charge en tant que speaker :", + "point_1": "Remboursement de votre transport. (Un montant maximum peut s'appliquer selon votre pays de résidence)", + "point_2": "Accès au dîner des speakers, prévu le mercredi 16 septembre.", + "point_3": "Accès complet à la conférence et à la soirée communautaire du jeudi 17 septembre.", + "point_4": "Deux nuits d'hôtel sont prévues pour les speakers résidant en France, et trois nuits si vous vivez à l'étranger ou si votre trajet nécessite plus de 6 heures de voyage.", + "point_5": "Si votre société peut couvrir vos frais de déplacement et d’hôtel, nous serons ravis de la mentionner comme sponsor de l'événement. Ce soutien nous permet d'accueillir davantage de speakers internationaux, et d'améliorer encore plus votre expérience lors de la conférence.", + "point_6": "Un coffret cadeau avec des surprises personnalisées." + }, + "techno": { + "title": "Partagez-nous votre savoir !" + }, + "subject": { + "title": "Thématiques", + "subtitle": "Nous recherchons des talks sur ces sujets (mais pas uniquement) :", + "button_subscribe": "Postulez au CFP", + "categories": [ + { + "icon": "api-platform-ecosystem", + "title": "API Platform et son écosystème", + "points": [ + "Vous avez découvert de nouvelles fonctionnalités, vous avez un cas d'usage, une expérience de migration ou une contribution à partager avec le framework API Platform.", + "Vous avez utilisé API Platform dans le cadre d'un projet client, et votre talk présentera votre parcours de développement – de la mise en place au déploiement.", + "Vous avez utilisé API Platform comme un outil clé dans la conception de vos API." + ] + }, + { + "icon": "going-further-api-p", + "title": "Aller plus loin avec API Platform", + "points": [ + "JavaScript - API Platform n'est pas qu'un outil PHP : en plus de son générateur d'interfaces d'administration, API Platform propose également un générateur de client capable de créer des applications entièrement fonctionnelles avec Next.js, Nuxt.js, React/Redux, Vue.js, Quasar ou Vuetify. Partagez-nous vos contributions et découvertes à ce sujet !", + "DevOps - Vous hébergez ou avez déployé un projet avec API Platform : racontez-nous votre expérience !", + "Partagez vos expériences sur l'utilisation de l'IA dans votre projet web." + ] + }, + { + "icon": "franken-php", + "title": "FrankenPHP", + "points": [ + "Vous avez optimisé les performances de votre application ou l’avez migrée avec FrankenPHP.", + "Vous avez déployé FrankenPHP de manière native ou en utilisant une solution d’hébergement Cloud. Partagez vos retours !", + "Vous tirez parti des dernières fonctionnalités de FrankenPHP pour améliorer l'expérience des développeurs, l'extensibilité et le traitement en arrière-plan.", + "L’observabilité avec FrankenPHP, vos stratégies de déploiement, les migrations vers le mode worker, les intégrations avec l’écosystème, ainsi que les retours d’expérience issus de projets réels sont les bienvenus." + ] + }, + { + "icon": "real-time", + "title": "Mercure et web en temps réel", + "points": [ + "Vous avez un sujet lié au protocole Mercure et aux architectures web temps réel. Vous souhaitez présenter des cas d’utilisation concrets, des choix architecturaux, des considérations de sécurité ou des retours d’expérience en production." + ] + }, + { + "icon": "frameworks", + "title": "Frameworks et outils", + "points": [ + "Partagez avec nous vos découvertes ou vos meilleures pratiques concernant les outils de l’écosystème PHP.", + "Parlez-nous des outils et des bonnes pratiques que vous utilisez pour construire l’architecture de vos applications. " + ] + }, + { + "icon": "society", + "title": "Societé", + "points": [ + "Management, RH, culture d'entreprise, santé mentale, agilité, combat pour une plus grande diversité et inclusion dans la tech... Nous laissons toujours la place à des sujets transversaux lors de notre événement." + ] + } + ] + }, + "informations": "Informations", + "point_1": "L'API Platform Conference est une conférence internationale qui se déroule à Lille pendant deux jours, avec deux scènes parallèles, en anglais et en français.", + "point_2": "Les conférences durent 20 ou 40 min (questions/réponses incluses).", + "point_3": "Pour des raisons d'organisation, les interventions sont limitées à deux speakers maximum.", + "point_4": "L'IA peut être d'une grande aide au quotidien, mais nous vous encourageons à proposer une intervention qui reflète véritablement votre manière de vous exprimer et votre expérience. Nous avons tendance à repérer assez facilement les contenus générés par l'IA.", + "point_5": "L'événement est hybride : en plus de se dérouler à Lille, votre talk sera diffusé en direct sur Internet. Sauf mention contraire, votre conférence sera ensuite mise en ligne sur notre chaîne YouTube après l'événement", + "point_6": "Proposer de nombreux sujets est encouragé, mais n'augmente pas nécessairement vos chances de sélection.", + "point_7": "Nous préférons les sujets inédits, mais il n'est pas éliminatoire de proposer un sujet déjà donné dans une autre conférence : chaque talk est unique et peut évoluer au fil du temps.", + "point_8": "Les speakers sont soumis au même code de conduite que les participants et le staff.", + "button_subscribe": "Postulez au CFP" } }, "an_event_by": "Un événement organisé par", @@ -316,7 +402,8 @@ "schedule": "Agenda", "speakers": "Speakers", "sponsorship": "Sponsors", - "venue": "Le lieu" + "venue": "Le lieu", + "cfp": "Call for papers" }, "title": "L'événement" } diff --git a/pwa/public/images/con/2025/cfp/real-time.png b/pwa/public/images/con/2025/cfp/real-time.png new file mode 100644 index 00000000..ec102194 Binary files /dev/null and b/pwa/public/images/con/2025/cfp/real-time.png differ diff --git a/pwa/public/images/con/2026/cfp/JS.png b/pwa/public/images/con/2026/cfp/JS.png new file mode 100644 index 00000000..c2f7c099 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/JS.png differ diff --git a/pwa/public/images/con/2026/cfp/api-platform-ecosystem.png b/pwa/public/images/con/2026/cfp/api-platform-ecosystem.png new file mode 100644 index 00000000..b18449de Binary files /dev/null and b/pwa/public/images/con/2026/cfp/api-platform-ecosystem.png differ diff --git a/pwa/public/images/con/2026/cfp/api-platform.png b/pwa/public/images/con/2026/cfp/api-platform.png new file mode 100644 index 00000000..2acf1975 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/api-platform.png differ diff --git a/pwa/public/images/con/2026/cfp/caddy.png b/pwa/public/images/con/2026/cfp/caddy.png new file mode 100644 index 00000000..307d51a7 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/caddy.png differ diff --git a/pwa/public/images/con/2026/cfp/elastic.png b/pwa/public/images/con/2026/cfp/elastic.png new file mode 100644 index 00000000..c499ce60 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/elastic.png differ diff --git a/pwa/public/images/con/2026/cfp/frameworks.png b/pwa/public/images/con/2026/cfp/frameworks.png new file mode 100644 index 00000000..8c412995 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/frameworks.png differ diff --git a/pwa/public/images/con/2026/cfp/franken-php.png b/pwa/public/images/con/2026/cfp/franken-php.png new file mode 100644 index 00000000..430ad60d Binary files /dev/null and b/pwa/public/images/con/2026/cfp/franken-php.png differ diff --git a/pwa/public/images/con/2026/cfp/frankenphp.png b/pwa/public/images/con/2026/cfp/frankenphp.png new file mode 100644 index 00000000..f9443c4d Binary files /dev/null and b/pwa/public/images/con/2026/cfp/frankenphp.png differ diff --git a/pwa/public/images/con/2026/cfp/going-further-api-p.png b/pwa/public/images/con/2026/cfp/going-further-api-p.png new file mode 100644 index 00000000..2cd58ee8 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/going-further-api-p.png differ diff --git a/pwa/public/images/con/2026/cfp/laravel.png b/pwa/public/images/con/2026/cfp/laravel.png new file mode 100644 index 00000000..58f12665 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/laravel.png differ diff --git a/pwa/public/images/con/2026/cfp/php.png b/pwa/public/images/con/2026/cfp/php.png new file mode 100644 index 00000000..9614669c Binary files /dev/null and b/pwa/public/images/con/2026/cfp/php.png differ diff --git a/pwa/public/images/con/2026/cfp/rabbitmq.png b/pwa/public/images/con/2026/cfp/rabbitmq.png new file mode 100644 index 00000000..b26d1654 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/rabbitmq.png differ diff --git a/pwa/public/images/con/2026/cfp/react-admin.png b/pwa/public/images/con/2026/cfp/react-admin.png new file mode 100644 index 00000000..306af355 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/react-admin.png differ diff --git a/pwa/public/images/con/2026/cfp/real-time.png b/pwa/public/images/con/2026/cfp/real-time.png new file mode 100644 index 00000000..ec102194 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/real-time.png differ diff --git a/pwa/public/images/con/2026/cfp/society.png b/pwa/public/images/con/2026/cfp/society.png new file mode 100644 index 00000000..31d3c6e7 Binary files /dev/null and b/pwa/public/images/con/2026/cfp/society.png differ diff --git a/pwa/public/images/con/2026/cfp/speaker-gift.jpg b/pwa/public/images/con/2026/cfp/speaker-gift.jpg new file mode 100644 index 00000000..b3219dda Binary files /dev/null and b/pwa/public/images/con/2026/cfp/speaker-gift.jpg differ diff --git a/pwa/public/images/con/2026/cfp/xdebug.png b/pwa/public/images/con/2026/cfp/xdebug.png new file mode 100644 index 00000000..d9ad38de Binary files /dev/null and b/pwa/public/images/con/2026/cfp/xdebug.png differ diff --git a/pwa/public/images/con/2026/logo.svg b/pwa/public/images/con/2026/logo.svg new file mode 100644 index 00000000..645d746f --- /dev/null +++ b/pwa/public/images/con/2026/logo.svg @@ -0,0 +1,5690 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pwa/public/images/con/2026/logo.webp b/pwa/public/images/con/2026/logo.webp new file mode 100644 index 00000000..65e3c827 Binary files /dev/null and b/pwa/public/images/con/2026/logo.webp differ