From 4042c222651a1aca9db09bad7516ca6cf6da507a Mon Sep 17 00:00:00 2001 From: ginifizz Date: Mon, 8 Jun 2026 16:00:22 +0200 Subject: [PATCH 1/2] feat: add planning 2026 --- .../[edition]/conferences/ConferencesPage.tsx | 387 ++++++++++++------ .../con/[edition]/conferences/page.tsx | 23 +- .../[locale]/con/[edition]/schedule/page.tsx | 1 + .../conferences/antoine-opening-keynote.md | 3 + ...on-merite-et-comment-piloter-du-go-avec.md | 5 +- .../building-a-framework-by-accident.md | 3 + .../building-desktop-apps-with-frankenphp.md | 3 + ...n-with-api-platform-messenger-and-redis.md | 3 + .../ddd-x-api-platform-4-years-later.md | 3 + ...-5-ans-devolution-dune-stack-llm-en-php.md | 5 +- ...ymfony-enfin-accessible-aux-debutant-es.md | 3 + ...des-apis-securisees-sans-perdre-la-tete.md | 5 +- ...sion-101-invisibles-mais-indispensables.md | 5 +- ...rk-1-to-api-platform-4-migration-recipe.md | 5 +- ...-line-of-defense-for-apis-and-frontends.md | 3 + ...s-frankenphp-the-fastest-way-to-run-php.md | 3 + .../2026/conferences/kevin-opening-keynote.md | 3 + .../l-exception-qui-confirme-la-regle.md | 5 +- .../2026/conferences/love-humans-use-ai.md | 3 + pwa/data/con/2026/conferences/nicolas-talk.md | 14 + ...rs-why-investing-in-open-source-matters.md | 3 + ...serve-frankenphp-dx-serving-performance.md | 3 + .../con/2026/conferences/own-your-content.md | 3 + ...reussir-sa-transition-avec-api-platform.md | 5 +- ...t-quand-php-devient-plus-que-full-stack.md | 3 + ...rex-passer-un-cms-legacy-en-worker-mode.md | 5 +- .../running-frankenphp-locally-with-ddev.md | 5 +- ...ud-what-could-go-wrong-spoiler-not-much.md | 5 +- ...ux-avec-symfony-api-platform-et-mercure.md | 5 +- .../why-silence-is-not-always-golden.md | 5 +- pwa/data/con/2026/extraConferences.ts | 94 +++++ pwa/data/con/2026/partners.ts | 19 + pwa/i18n/dictionaries/en.json | 2 + pwa/i18n/dictionaries/fr.json | 2 + .../images/con/2026/partners/emagma.png | Bin 0 -> 34526 bytes .../images/con/2026/partners/france-tv.png | Bin 0 -> 13669 bytes .../images/con/2026/partners/human-coders.png | Bin 0 -> 25564 bytes 37 files changed, 497 insertions(+), 147 deletions(-) create mode 100644 pwa/data/con/2026/conferences/nicolas-talk.md create mode 100644 pwa/data/con/2026/extraConferences.ts create mode 100644 pwa/public/images/con/2026/partners/emagma.png create mode 100644 pwa/public/images/con/2026/partners/france-tv.png create mode 100644 pwa/public/images/con/2026/partners/human-coders.png diff --git a/pwa/app/(con)/[locale]/con/[edition]/conferences/ConferencesPage.tsx b/pwa/app/(con)/[locale]/con/[edition]/conferences/ConferencesPage.tsx index 8e6dd5d19..c045ab311 100644 --- a/pwa/app/(con)/[locale]/con/[edition]/conferences/ConferencesPage.tsx +++ b/pwa/app/(con)/[locale]/con/[edition]/conferences/ConferencesPage.tsx @@ -1,7 +1,7 @@ "use client"; -import React, { Fragment, useContext } from "react"; +import React, { Fragment, useContext, useState } from "react"; import SectionTitle from "components/con/common/typography/SectionTitle"; -import { Conference, Day } from "types/con"; +import { Conference, Day, Track } from "types/con"; import { LanguageContext } from "contexts/con/LanguageContext"; import styles from "./conferencesPage.module.css"; import SpeakerImage2025 from "components/con/speakers/SpeakerImage2025"; @@ -10,166 +10,285 @@ import classNames from "classnames"; import { getConferenceDate } from "utils/con"; import Link from "next/link"; import TagLabel from "components/con/conferences/TagLabel"; +import ScheduleDay from "../schedule/components/ScheduleDay"; + +type ViewMode = "list" | "agenda"; interface ConferencesProps { conferences: Conference[]; + scheduleConferences: Conference[]; + tracks: Track[]; edition: string; days: Day[]; } +function ViewToggle({ + view, + onChange, +}: { + view: ViewMode; + onChange: (view: ViewMode) => void; +}) { + const { t } = useContext(LanguageContext); + const options: { value: ViewMode; label: string; icon: JSX.Element }[] = [ + { + value: "list", + label: t("conferences.view_list"), + icon: ( + + + + ), + }, + { + value: "agenda", + label: t("conferences.view_agenda"), + icon: ( + + + + ), + }, + ]; + + return ( +
+ {options.map((option) => { + const isActive = view === option.value; + return ( + + ); + })} +
+ ); +} + export default function SpeakerPageListTemplate({ conferences, + scheduleConferences, + tracks, edition, days, }: ConferencesProps) { const is2025 = edition === "2025" || edition === "2026"; const { t, locale, Translate } = useContext(LanguageContext); + const [view, setView] = useState("list"); return (
-
-
- {conferences.map((conference, i) => { - const day = days.find((day: Day) => day.date === conference.date); - return ( -
-
- - + +
+ {view === "agenda" ? ( +
+ {days.map((day: Day) => ( + conference.date === day.date + )} + /> + ))} +
+ ) : ( +
+
+ {conferences.map((conference, i) => { + const day = days.find((day: Day) => day.date === conference.date); + return ( +
+
- - - -
- -
- {conference.speakers.map((speaker, index) => { - return is2025 ? ( -
+ - -
- ) : ( + + +
+ +
+ {conference.speakers.map((speaker, index) => { + return is2025 ? ( +
+ +
+ ) : ( +
+ +
+ ); + })} +
+ + {conference.speakers.map((speaker, index) => ( + + + {speaker.name} + + {index < conference.speakers.length - 2 && + ", "} + {index === conference.speakers.length - 2 && + " & "} + + ))} + + ), + }} + /> +
+
+
+
+ {conference.tag + ? conference.tag + .split(",") + .map((t) => ) + : null} +
+

+ {conference.title} +

+ <> + {day ? ( +

+ + {day.title?.[locale]} + + {conference.track + ? ` - ${conference.track.title?.[locale]}` + : null} +

+ ) : null} + {conference.date ? ( +

+ {getConferenceDate( + conference.date, + conference.start, + conference.end + )} +

+ ) : null} + + {conference.description ? (
- -
- ); - })} -
- - {conference.speakers.map((speaker, index) => ( - - - {speaker.name} - - {index < conference.speakers.length - 2 && ", "} - {index === conference.speakers.length - 2 && - " & "} - - ))} - - ), - }} - /> -
-
-
-
- {conference.tag - ? conference.tag.split(",").map((t) => ) - : null} -
-

- {conference.title} -

- <> - {day ? ( -

- - {day.title?.[locale]} - - {conference.track - ? ` - ${conference.track.title?.[locale]}` - : null} -

- ) : null} - {conference.date ? ( -

- {getConferenceDate( - conference.date, - conference.start, - conference.end + "font-light leading-relaxed mt-4 text-justify md:text-left", + styles.description )} -

+ dangerouslySetInnerHTML={{ + __html: conference.description.replaceAll( + "h2>", + "h3>" + ), + }} + /> ) : null} - - {conference.description ? ( -
", "h3>"), - }} - /> - ) : null} +
-
- ); - })} + ); + })} +
-
+ )}
); } diff --git a/pwa/app/(con)/[locale]/con/[edition]/conferences/page.tsx b/pwa/app/(con)/[locale]/con/[edition]/conferences/page.tsx index 668372ea7..60704650b 100644 --- a/pwa/app/(con)/[locale]/con/[edition]/conferences/page.tsx +++ b/pwa/app/(con)/[locale]/con/[edition]/conferences/page.tsx @@ -2,6 +2,7 @@ import { Locale } from "i18n/i18n-config"; import ConferencesPage from "./ConferencesPage"; import { getAllConferenceSlugs, getConferenceData } from "api/con/conferences"; import { sortBySpeakerRank, sortByStartDate } from "utils/con"; +import { Conference, Track } from "types/con"; const getConferences = async (edition: string, locale: Locale) => { const conferencesSlugs = await getAllConferenceSlugs(edition); @@ -24,9 +25,29 @@ export default async function Page({ params }: Props) { .sort(sortBySpeakerRank) .sort(sortByStartDate); const days = (await import(`data/con/${params.edition}/days`)).default; + const tracks = (await import(`data/con/${params.edition}/tracks`)).default; + const extra = ( + await import(`data/con/${params.edition}/extraConferences`) + ).default.map((c: any) => ({ + ...c, + track: c.track && tracks.find((t: Track) => t.id === c.track), + })); + + const scheduleConferences = [ + ...sortedConferences, + ...(extra as Conference[]), + ]; // Fetch data directly in a Server Component // Forward fetched data to your Client Component - return ; + return ( + + ); } export const generateStaticParams = async () => { diff --git a/pwa/app/(con)/[locale]/con/[edition]/schedule/page.tsx b/pwa/app/(con)/[locale]/con/[edition]/schedule/page.tsx index 9c7daea25..52ca95334 100644 --- a/pwa/app/(con)/[locale]/con/[edition]/schedule/page.tsx +++ b/pwa/app/(con)/[locale]/con/[edition]/schedule/page.tsx @@ -34,5 +34,6 @@ export async function generateStaticParams() { { edition: "2023" }, { edition: "2024" }, { edition: "2025" }, + { edition: "2026" }, ]; } diff --git a/pwa/data/con/2026/conferences/antoine-opening-keynote.md b/pwa/data/con/2026/conferences/antoine-opening-keynote.md index ec1e87e4b..b76ece022 100644 --- a/pwa/data/con/2026/conferences/antoine-opening-keynote.md +++ b/pwa/data/con/2026/conferences/antoine-opening-keynote.md @@ -4,6 +4,9 @@ speakers: -antoine-bluchet-2026 short: TBA tag: feedback track: '1' +date: '2026-09-17' +start: '14:00' +end: '14:40' --- # Opening Keynote 🇺🇸 diff --git a/pwa/data/con/2026/conferences/api-platform-le-hub-semantique-quon-merite-et-comment-piloter-du-go-avec.md b/pwa/data/con/2026/conferences/api-platform-le-hub-semantique-quon-merite-et-comment-piloter-du-go-avec.md index b43582169..a04865f3b 100644 --- a/pwa/data/con/2026/conferences/api-platform-le-hub-semantique-quon-merite-et-comment-piloter-du-go-avec.md +++ b/pwa/data/con/2026/conferences/api-platform-le-hub-semantique-quon-merite-et-comment-piloter-du-go-avec.md @@ -3,7 +3,10 @@ type: conference speakers: -matthieu-werner-2026 short: "Alliez la richesse d'API Platform à la puissance brute de Go. Un REX pragmatique sur l'orchestration de microservices via des DTOs, Jane PHP et AutoMapper." tag: tools -track: '1' +track: '2' +date: '2026-09-18' +start: '13:50' +end: '14:30' --- # API Platform : Le Hub Sémantique qu'on mérite (et comment piloter du Go avec) 🇫🇷 diff --git a/pwa/data/con/2026/conferences/building-a-framework-by-accident.md b/pwa/data/con/2026/conferences/building-a-framework-by-accident.md index 397716332..303766765 100644 --- a/pwa/data/con/2026/conferences/building-a-framework-by-accident.md +++ b/pwa/data/con/2026/conferences/building-a-framework-by-accident.md @@ -4,6 +4,9 @@ speakers: -brent-roose-2026 short: "An accidental journey into modern software design. Uncover the lessons learned and the core features behind the Tempest framework." tag: tools track: '1' +date: '2026-09-18' +start: '14:40' +end: '15:20' --- # Building a framework by accident 🇺🇸 diff --git a/pwa/data/con/2026/conferences/building-desktop-apps-with-frankenphp.md b/pwa/data/con/2026/conferences/building-desktop-apps-with-frankenphp.md index f750ebe58..30cdeb52a 100644 --- a/pwa/data/con/2026/conferences/building-desktop-apps-with-frankenphp.md +++ b/pwa/data/con/2026/conferences/building-desktop-apps-with-frankenphp.md @@ -4,6 +4,9 @@ speakers: -johan-janssens-2026 short: "PHP on the desktop sounds crazy—until it works. Discover how to combine FrankenPHP and Wails to build fast, native desktop applications within a single binary." tag: archi track: '1' +date: '2026-09-18' +start: '09:00' +end: '09:40' --- # Building Desktop Apps with FrankenPHP 🇺🇸 diff --git a/pwa/data/con/2026/conferences/building-resilient-architecture-event-driven-design-with-api-platform-messenger-and-redis.md b/pwa/data/con/2026/conferences/building-resilient-architecture-event-driven-design-with-api-platform-messenger-and-redis.md index 42b87477f..b5f0b78c0 100644 --- a/pwa/data/con/2026/conferences/building-resilient-architecture-event-driven-design-with-api-platform-messenger-and-redis.md +++ b/pwa/data/con/2026/conferences/building-resilient-architecture-event-driven-design-with-api-platform-messenger-and-redis.md @@ -4,6 +4,9 @@ speakers: -abdellah-el-ghailani-2026 short: Keep your APIs fast and resilient when legacy backends are slow. tag: feedback track: '1' +date: '2026-09-18' +start: '15:50' +end: '16:30' --- # Building Resilient Architecture : Event-Driven Design with API Platform, Messenger & Redis 🇺🇸 diff --git a/pwa/data/con/2026/conferences/ddd-x-api-platform-4-years-later.md b/pwa/data/con/2026/conferences/ddd-x-api-platform-4-years-later.md index 31a4576ab..1f44f7049 100644 --- a/pwa/data/con/2026/conferences/ddd-x-api-platform-4-years-later.md +++ b/pwa/data/con/2026/conferences/ddd-x-api-platform-4-years-later.md @@ -4,6 +4,9 @@ speakers: -mathias-arlaud-2026 short: "When business complexity outgrows the defaults. Discover how to use API Platform 4 and DDD to build robust architectures, on and off the framework's rails." tag: good-practices track: '1' +date: '2026-09-17' +start: '16:00' +end: '16:40' --- # DDD x API Platform: 4 years later 🇺🇸 diff --git a/pwa/data/con/2026/conferences/de-gpt-3-aux-agents-5-ans-devolution-dune-stack-llm-en-php.md b/pwa/data/con/2026/conferences/de-gpt-3-aux-agents-5-ans-devolution-dune-stack-llm-en-php.md index 8db2585f4..e4bcd533a 100644 --- a/pwa/data/con/2026/conferences/de-gpt-3-aux-agents-5-ans-devolution-dune-stack-llm-en-php.md +++ b/pwa/data/con/2026/conferences/de-gpt-3-aux-agents-5-ans-devolution-dune-stack-llm-en-php.md @@ -3,7 +3,10 @@ type: conference speakers: -sebastien-rogier-2026 short: "D'une usine à gaz à un système d'agents asynchrones : comment abstraire, orchestrer et fiabiliser 40 000 requêtes IA par jour en PHP." tag: feedback -track: '1' +track: '2' +date: '2026-09-18' +start: '09:50' +end: '10:30' --- # De GPT-3 aux agents : 5 ans d'évolution d'une stack LLM en PHP 🇫🇷 diff --git a/pwa/data/con/2026/conferences/de-zero-a-la-prod-le-deploiement-symfony-enfin-accessible-aux-debutant-es.md b/pwa/data/con/2026/conferences/de-zero-a-la-prod-le-deploiement-symfony-enfin-accessible-aux-debutant-es.md index 58f2bbffd..e1a11439e 100644 --- a/pwa/data/con/2026/conferences/de-zero-a-la-prod-le-deploiement-symfony-enfin-accessible-aux-debutant-es.md +++ b/pwa/data/con/2026/conferences/de-zero-a-la-prod-le-deploiement-symfony-enfin-accessible-aux-debutant-es.md @@ -4,6 +4,9 @@ speakers: -yoan-bernabeu-2026 short: Du local à la production en une seule commande. tag: feedback track: '1' +date: '2026-09-17' +start: '10:50' +end: '11:10' --- # De zéro à la prod : le déploiement Symfony enfin accessible aux débutant·es 🇫🇷 diff --git a/pwa/data/con/2026/conferences/des-apis-securisees-sans-perdre-la-tete.md b/pwa/data/con/2026/conferences/des-apis-securisees-sans-perdre-la-tete.md index c8775df69..0c3d6bced 100644 --- a/pwa/data/con/2026/conferences/des-apis-securisees-sans-perdre-la-tete.md +++ b/pwa/data/con/2026/conferences/des-apis-securisees-sans-perdre-la-tete.md @@ -3,7 +3,10 @@ type: conference speakers: -mathieu-santostefano-2026 short: "De OAuth2 à Keycloak en passant par Symfony, découvrez comment implémenter des standards de sécurité modernes pour vos APIs sans y laisser votre santé mentale." tag: security -track: '1' +track: '2' +date: '2026-09-17' +start: '16:50' +end: '17:30' --- # Des APIs sécurisées sans perdre la tête 🇫🇷 diff --git a/pwa/data/con/2026/conferences/extension-101-invisibles-mais-indispensables.md b/pwa/data/con/2026/conferences/extension-101-invisibles-mais-indispensables.md index 829202dfd..9dfaebc8c 100644 --- a/pwa/data/con/2026/conferences/extension-101-invisibles-mais-indispensables.md +++ b/pwa/data/con/2026/conferences/extension-101-invisibles-mais-indispensables.md @@ -3,7 +3,10 @@ type: conference speakers: -damien-fernandes-2026 short: "Vous les croisez tous les jours dans vos composer.json. Il est temps de démystifier les extensions PHP, de comprendre leurs rouages et d'apprendre à créer la vôtre." tag: archi -track: '1' +track: '2' +date: '2026-09-18' +start: '15:50' +end: '16:30' --- # Extension 101 : Invisibles mais indispensables 🇫🇷 diff --git a/pwa/data/con/2026/conferences/from-zend-framework-1-to-api-platform-4-migration-recipe.md b/pwa/data/con/2026/conferences/from-zend-framework-1-to-api-platform-4-migration-recipe.md index 4203a6111..05c6c0b8b 100644 --- a/pwa/data/con/2026/conferences/from-zend-framework-1-to-api-platform-4-migration-recipe.md +++ b/pwa/data/con/2026/conferences/from-zend-framework-1-to-api-platform-4-migration-recipe.md @@ -3,7 +3,10 @@ type: conference speakers: -robin-chalas-2026 short: "Tackling 10 years of technical debt in under 6 months. Discover the practical steps, AI levers, and architectural choices to safely modernize your legacy PHP applications." tag: archi -track: '1' +track: '2' +date: '2026-09-17' +start: '11:40' +end: '12:20' --- # From Zend Framework 1 to API Platform 4: Migration recipe 🇺🇸 diff --git a/pwa/data/con/2026/conferences/http-headers-the-first-line-of-defense-for-apis-and-frontends.md b/pwa/data/con/2026/conferences/http-headers-the-first-line-of-defense-for-apis-and-frontends.md index bafa3cee0..e7b4b4238 100644 --- a/pwa/data/con/2026/conferences/http-headers-the-first-line-of-defense-for-apis-and-frontends.md +++ b/pwa/data/con/2026/conferences/http-headers-the-first-line-of-defense-for-apis-and-frontends.md @@ -4,6 +4,9 @@ speakers: -florent-morselli-2026 short: "Master CSP, CORS, and isolation policies with Symfony and API Platform to build a robust client-side shield against modern web vulnerabilities." tag: security track: '1' +date: '2026-09-18' +start: '11:50' +end: '12:10' --- # HTTP Headers: The First Line of Defense for APIs and Frontends 🇺🇸 diff --git a/pwa/data/con/2026/conferences/is-frankenphp-the-fastest-way-to-run-php.md b/pwa/data/con/2026/conferences/is-frankenphp-the-fastest-way-to-run-php.md index 08f61f492..6930d40f4 100644 --- a/pwa/data/con/2026/conferences/is-frankenphp-the-fastest-way-to-run-php.md +++ b/pwa/data/con/2026/conferences/is-frankenphp-the-fastest-way-to-run-php.md @@ -4,6 +4,9 @@ speakers: -benjamin-eberlei-2026 short: "Beyond the hype: compare FrankenPHP against FPM and Swoole with real benchmarks to discover the true performance gains of the worker mode." tag: tools track: '1' +date: '2026-09-18' +start: '11:00' +end: '11:40' --- # Is FrankenPHP the Fastest Way to Run PHP? 🇺🇸 diff --git a/pwa/data/con/2026/conferences/kevin-opening-keynote.md b/pwa/data/con/2026/conferences/kevin-opening-keynote.md index 7a584328b..d197cb5a3 100644 --- a/pwa/data/con/2026/conferences/kevin-opening-keynote.md +++ b/pwa/data/con/2026/conferences/kevin-opening-keynote.md @@ -4,6 +4,9 @@ speakers: -kevin-dunglas-2026 short: TBA tag: feedback track: '1' +date: '2026-09-17' +start: '10:00' +end: '10:40' --- # Opening Keynote 🇺🇸 diff --git a/pwa/data/con/2026/conferences/l-exception-qui-confirme-la-regle.md b/pwa/data/con/2026/conferences/l-exception-qui-confirme-la-regle.md index 1b896a3c5..c842835fe 100644 --- a/pwa/data/con/2026/conferences/l-exception-qui-confirme-la-regle.md +++ b/pwa/data/con/2026/conferences/l-exception-qui-confirme-la-regle.md @@ -3,7 +3,10 @@ type: conference speakers: -smaine-milianni-2026 short: L'art de dompter, structurer et observer ses exceptions avec PHP et Symfony. tag: tools -track: '1' +track: '2' +date: '2026-09-18' +start: '14:40' +end: '15:20' --- # L'exception qui confirme la règle 🇫🇷 diff --git a/pwa/data/con/2026/conferences/love-humans-use-ai.md b/pwa/data/con/2026/conferences/love-humans-use-ai.md index 9acc8372b..e209d5326 100644 --- a/pwa/data/con/2026/conferences/love-humans-use-ai.md +++ b/pwa/data/con/2026/conferences/love-humans-use-ai.md @@ -4,6 +4,9 @@ speakers: -diana-scharf-2026 short: "If the recent AI boom makes your job feel weird, you're not alone. A pro-human exploration of what we lose, what we gain, and why developers still matter." tag: ia track: '1' +date: '2026-09-17' +start: '16:50' +end: '17:30' --- # Love Humans, Use AI 🇺🇸 diff --git a/pwa/data/con/2026/conferences/nicolas-talk.md b/pwa/data/con/2026/conferences/nicolas-talk.md new file mode 100644 index 000000000..d3cdbb5d0 --- /dev/null +++ b/pwa/data/con/2026/conferences/nicolas-talk.md @@ -0,0 +1,14 @@ +--- +type: conference +speakers: -nicolas-grekas-2026 +short: TBA +tag: feedback +track: '1' +date: '2026-09-17' +start: '14:50' +end: '15:30' +--- + +# Nicolas's talk 🇺🇸 + +This talk topic will be announced shortly. diff --git a/pwa/data/con/2026/conferences/no-oss-no-users-why-investing-in-open-source-matters.md b/pwa/data/con/2026/conferences/no-oss-no-users-why-investing-in-open-source-matters.md index 8fbca5e80..d0342068a 100644 --- a/pwa/data/con/2026/conferences/no-oss-no-users-why-investing-in-open-source-matters.md +++ b/pwa/data/con/2026/conferences/no-oss-no-users-why-investing-in-open-source-matters.md @@ -4,6 +4,9 @@ speakers: -pauline-vos-2026 short: "Drawing from MongoDB's experience, discover why investing in open-source tools is essential for user adoption and how to convince your leadership to make the leap." tag: good-practices track: '1' +date: '2026-09-18' +start: '13:50' +end: '14:30' --- # No OSS, No Users: Why Investing in Open Source Matters 🇺🇸 diff --git a/pwa/data/con/2026/conferences/observe-frankenphp-dx-serving-performance.md b/pwa/data/con/2026/conferences/observe-frankenphp-dx-serving-performance.md index a25078e84..821e1809c 100644 --- a/pwa/data/con/2026/conferences/observe-frankenphp-dx-serving-performance.md +++ b/pwa/data/con/2026/conferences/observe-frankenphp-dx-serving-performance.md @@ -4,6 +4,9 @@ speakers: -alexandre-daubois-2026 short: "From blind panics to real-time insights: a live deep dive into tracking memory leaks and tuning FrankenPHP workers without the hassle." tag: performance track: '1' +date: '2026-09-17' +start: '11:40' +end: '12:20' --- # Observe FrankenPHP: DX Serving Performance 🇺🇸 diff --git a/pwa/data/con/2026/conferences/own-your-content.md b/pwa/data/con/2026/conferences/own-your-content.md index e06c86889..9c547bdf2 100644 --- a/pwa/data/con/2026/conferences/own-your-content.md +++ b/pwa/data/con/2026/conferences/own-your-content.md @@ -4,6 +4,9 @@ speakers: -derick-rethans-2026 short: "Reclaim the open web. Explore how ActivityPub and the Fediverse offer a sustainable, decentralized path forward to finally own your digital content." tag: archi track: '1' +date: '2026-09-18' +start: '09:50' +end: '10:30' --- # Own your content 🇺🇸 diff --git a/pwa/data/con/2026/conferences/passer-dun-monolithe-a-une-galaxie-dapplications-reussir-sa-transition-avec-api-platform.md b/pwa/data/con/2026/conferences/passer-dun-monolithe-a-une-galaxie-dapplications-reussir-sa-transition-avec-api-platform.md index 9628494b6..f8ff3745b 100644 --- a/pwa/data/con/2026/conferences/passer-dun-monolithe-a-une-galaxie-dapplications-reussir-sa-transition-avec-api-platform.md +++ b/pwa/data/con/2026/conferences/passer-dun-monolithe-a-une-galaxie-dapplications-reussir-sa-transition-avec-api-platform.md @@ -4,7 +4,10 @@ speakers: -imen-ezzine-2026 -benjamin-georgeault-2026 short: "Comment découper un monolithe sans y laisser des plumes ? Un retour d'expérience à deux voix sur l'utilisation d'API Platform pour orchestrer une architecture distribuée." tag: archi -track: '1' +track: '2' +date: '2026-09-17' +start: '14:50' +end: '15:30' --- # Passer d'un monolithe à une galaxie d'applications : Réussir sa transition avec API Platform 🇫🇷 diff --git a/pwa/data/con/2026/conferences/php-mercure-et-iot-quand-php-devient-plus-que-full-stack.md b/pwa/data/con/2026/conferences/php-mercure-et-iot-quand-php-devient-plus-que-full-stack.md index 7b0d969bd..731b7d948 100644 --- a/pwa/data/con/2026/conferences/php-mercure-et-iot-quand-php-devient-plus-que-full-stack.md +++ b/pwa/data/con/2026/conferences/php-mercure-et-iot-quand-php-devient-plus-que-full-stack.md @@ -4,6 +4,9 @@ speakers: -yohan-giarelli-2026 short: "Parce que c'est possible ! Sortez PHP de sa zone de confort et explorez ses capacités insoupçonnées dans l'informatique embarquée avec Symfony et Mercure." tag: tools track: '1' +date: '2026-09-17' +start: '17:40' +end: '18:00' --- # PHP, Mercure et IoT – Quand PHP devient plus que Full Stack 🇫🇷 diff --git a/pwa/data/con/2026/conferences/rex-passer-un-cms-legacy-en-worker-mode.md b/pwa/data/con/2026/conferences/rex-passer-un-cms-legacy-en-worker-mode.md index d21c1df2a..d6da56f7b 100644 --- a/pwa/data/con/2026/conferences/rex-passer-un-cms-legacy-en-worker-mode.md +++ b/pwa/data/con/2026/conferences/rex-passer-un-cms-legacy-en-worker-mode.md @@ -3,7 +3,10 @@ type: conference speakers: -xavier-leune-2026 short: "RoadRunner ou FrankenPHP ? Plongée au cœur du worker mode avec le REX d'un grand média. Chiffres à l'appui, découvrez comment changer de paradigme sur une application existante." tag: performance -track: '1' +track: '2' +date: '2026-09-17' +start: '16:00' +end: '16:40' --- # REX : Passer un CMS legacy en worker mode 🇫🇷 diff --git a/pwa/data/con/2026/conferences/running-frankenphp-locally-with-ddev.md b/pwa/data/con/2026/conferences/running-frankenphp-locally-with-ddev.md index ac7d76ac9..dc3a12a58 100644 --- a/pwa/data/con/2026/conferences/running-frankenphp-locally-with-ddev.md +++ b/pwa/data/con/2026/conferences/running-frankenphp-locally-with-ddev.md @@ -3,7 +3,10 @@ type: conference speakers: -stephan-hochdorfer-2026 short: Seamless, containerized FrankenPHP development made easy. tag: good-practices -track: '1' +track: '2' +date: '2026-09-17' +start: '17:40' +end: '18:00' --- # Running FrankenPHP Locally with DDEV 🇺🇸 diff --git a/pwa/data/con/2026/conferences/symfony-on-laravel-cloud-what-could-go-wrong-spoiler-not-much.md b/pwa/data/con/2026/conferences/symfony-on-laravel-cloud-what-could-go-wrong-spoiler-not-much.md index 60830efe7..9115bb630 100644 --- a/pwa/data/con/2026/conferences/symfony-on-laravel-cloud-what-could-go-wrong-spoiler-not-much.md +++ b/pwa/data/con/2026/conferences/symfony-on-laravel-cloud-what-could-go-wrong-spoiler-not-much.md @@ -3,7 +3,10 @@ type: conference speakers: -jeremy-nikolic-2026 short: "Deploying Symfony on a Laravel-first infrastructure sounds like trouble. Discover why this unconventional pairing is actually a surprisingly smooth, production-ready match." tag: archi -track: '1' +track: '2' +date: '2026-09-17' +start: '10:50' +end: '11:10' --- # Symfony on Laravel Cloud: What Could Go Wrong? (Spoiler: Not Much) 🇺🇸 diff --git a/pwa/data/con/2026/conferences/ux-datatables-reinventer-les-tableaux-avec-symfony-api-platform-et-mercure.md b/pwa/data/con/2026/conferences/ux-datatables-reinventer-les-tableaux-avec-symfony-api-platform-et-mercure.md index d3f4a7ad7..71b661e07 100644 --- a/pwa/data/con/2026/conferences/ux-datatables-reinventer-les-tableaux-avec-symfony-api-platform-et-mercure.md +++ b/pwa/data/con/2026/conferences/ux-datatables-reinventer-les-tableaux-avec-symfony-api-platform-et-mercure.md @@ -3,7 +3,10 @@ type: conference speakers: -tanguy-lemarie-2026 short: "Associez API Platform, Mercure et UX DataTables pour transformer vos grilles de données statiques en interfaces réactives et temps réel, le tout nativement sous Symfony." tag: ia -track: '1' +track: '2' +date: '2026-09-18' +start: '11:50' +end: '12:10' --- # UX DataTables : réinventer les tableaux avec Symfony, API Platform et Mercure 🇫🇷 diff --git a/pwa/data/con/2026/conferences/why-silence-is-not-always-golden.md b/pwa/data/con/2026/conferences/why-silence-is-not-always-golden.md index 615935309..06715b8d9 100644 --- a/pwa/data/con/2026/conferences/why-silence-is-not-always-golden.md +++ b/pwa/data/con/2026/conferences/why-silence-is-not-always-golden.md @@ -3,7 +3,10 @@ type: conference speakers: -helvira-goma-2026 short: "Stop choosing your coding playlist out of habit. Explore the cognitive science behind music and silence to intentionally engineer your ultimate state of flow." tag: society -track: '1' +track: '2' +date: '2026-09-18' +start: '11:00' +end: '11:40' --- # Why Silence Is Not Always Golden 🇺🇸 diff --git a/pwa/data/con/2026/extraConferences.ts b/pwa/data/con/2026/extraConferences.ts new file mode 100644 index 000000000..cc369b8c3 --- /dev/null +++ b/pwa/data/con/2026/extraConferences.ts @@ -0,0 +1,94 @@ +const extra = [ + { + title: { + en: "Welcome speech", + fr: "Mot de bienvenue", + }, + date: "2026-09-17", + start: "09:50", + end: "10:00", + type: "break", + }, + { + title: { + en: "Morning break", + fr: "Pause café", + }, + date: "2026-09-17", + start: "11:10", + end: "11:40", + type: "break", + }, + { + title: { + en: "Lunch break", + fr: "Pause déjeuner", + }, + date: "2026-09-17", + start: "12:20", + end: "14:00", + type: "break", + }, + { + title: { + en: "Afternoon break", + fr: "Pause café", + }, + date: "2026-09-17", + start: "15:30", + end: "16:00", + type: "break", + }, + { + title: { + fr: "Apéro communautaire", + en: "Community party", + }, + date: "2026-09-17", + start: "18:10", + end: "24:00", + type: "break", + }, + { + title: { + en: "Morning break", + fr: "Pause café", + }, + date: "2026-09-18", + start: "10:30", + end: "11:00", + type: "break", + }, + { + title: { + en: "Lunch break", + fr: "Pause déjeuner", + }, + date: "2026-09-18", + start: "12:10", + end: "13:50", + type: "break", + }, + { + title: { + en: "Afternoon break", + fr: "Pause café", + }, + date: "2026-09-18", + start: "15:20", + end: "15:50", + type: "break", + }, + { + title: { + en: "Closing speech", + fr: "Discours de clôture", + }, + date: "2026-09-18", + start: "16:30", + end: "16:40", + type: "break", + }, +]; + +export default extra; diff --git a/pwa/data/con/2026/partners.ts b/pwa/data/con/2026/partners.ts index ee70a574f..e5ed50f9d 100644 --- a/pwa/data/con/2026/partners.ts +++ b/pwa/data/con/2026/partners.ts @@ -1,6 +1,13 @@ import { Partner } from "types/con"; const partners: Partner[] = [ + { + name: "France tv", + logo: "france-tv", + link: "https://www.francetelevisions.fr/", + rank: 1, + highlight: true, + }, { name: "SensioLabs", logo: "sensiolabs", @@ -41,6 +48,18 @@ const partners: Partner[] = [ link: "https://www.bearstudio.fr/", rank: 2, }, + { + name: "Emagma", + logo: "emagma", + link: "https://www.emagma.fr/", + rank: 4, + }, + { + name: "Human Coders", + logo: "human-coders", + link: "https://www.humancoders.com/", + rank: 4, + }, { name: "BitExpert", logo: "bitexpert", diff --git a/pwa/i18n/dictionaries/en.json b/pwa/i18n/dictionaries/en.json index 9dbb816a5..2e5888803 100644 --- a/pwa/i18n/dictionaries/en.json +++ b/pwa/i18n/dictionaries/en.json @@ -397,6 +397,8 @@ "title": "Talks", "by_speaker": "by {{speaker}}", "see_speaker_details": "See speaker's details", + "view_list": "List", + "view_agenda": "Agenda", "tags": { "security": "Security", "performance": "Performance", diff --git a/pwa/i18n/dictionaries/fr.json b/pwa/i18n/dictionaries/fr.json index 90c35b22c..2647bc3ea 100644 --- a/pwa/i18n/dictionaries/fr.json +++ b/pwa/i18n/dictionaries/fr.json @@ -393,6 +393,8 @@ "title": "Conférences", "by_speaker": "par {{speaker}}", "see_speaker_details": "Plus d'infos", + "view_list": "Liste", + "view_agenda": "Agenda", "tags": { "security": "Sécurité", "performance": "Performance", diff --git a/pwa/public/images/con/2026/partners/emagma.png b/pwa/public/images/con/2026/partners/emagma.png new file mode 100644 index 0000000000000000000000000000000000000000..f40c180e9c8d18c22d2fd1e8dc7a933384da5833 GIT binary patch literal 34526 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 WLgpNUZ;ar;FGV>u*(w?HkpBTChuCHS literal 0 HcmV?d00001 diff --git a/pwa/public/images/con/2026/partners/france-tv.png b/pwa/public/images/con/2026/partners/france-tv.png new file mode 100644 index 0000000000000000000000000000000000000000..6ac23b8e0273460aac36b34fa41686dc3b8aba88 GIT binary patch literal 13669 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 I$o04X0SRKvZU6uP literal 0 HcmV?d00001 From 596847d312ba5a03e6f02254fd71d9a4e447f2aa Mon Sep 17 00:00:00 2001 From: ginifizz Date: Mon, 8 Jun 2026 16:20:02 +0200 Subject: [PATCH 2/2] feat: update contributors --- pwa/api/contributorsRank.ts | 53 +- pwa/data/contributors.json | 5679 +++++++++++++++++++---------------- 2 files changed, 3062 insertions(+), 2670 deletions(-) diff --git a/pwa/api/contributorsRank.ts b/pwa/api/contributorsRank.ts index 117e6a9f8..5528be91f 100644 --- a/pwa/api/contributorsRank.ts +++ b/pwa/api/contributorsRank.ts @@ -145,29 +145,42 @@ export const getAllContributors = async () => { ); const allContributors = await Promise.all( sortedContributors.map(async (contributor) => { - const { data } = await octokit.rest.users.getByUsername({ - username: contributor.login || "", - }); - if (data.blog) { - data.blog = addHttpsToUrls(data.blog); - } + try { + const { data } = await octokit.rest.users.getByUsername({ + username: contributor.login || "", + }); + if (data.blog) { + data.blog = addHttpsToUrls(data.blog); + } - return { - login: data.login, - repos: contributor.repos, - rank: contributor.rank, - contributions: contributor.contributions, - isCoreTeam: contributor.isCoreTeam, - avatar_url: contributor.avatar_url, - bio: data.bio, - name: data.name, - location: data.location, - company: data.company, - blog: data.blog, - }; + return { + login: data.login, + repos: contributor.repos, + rank: contributor.rank, + contributions: contributor.contributions, + isCoreTeam: contributor.isCoreTeam, + avatar_url: contributor.avatar_url, + bio: data.bio, + name: data.name, + location: data.location, + company: data.company, + blog: data.blog, + }; + } catch (e: any) { + // Some accounts (e.g. the Copilot bot) have no public user + // profile and return 404. Skip them instead of failing the + // whole run, which would wipe the entire dataset. + if (e?.status === 404) { + console.warn( + `Skipping contributor without a user profile: ${contributor.login}` + ); + return null; + } + throw e; + } }) ); - return allContributors; + return allContributors.filter(Boolean); } catch (e) { console.error(e); return []; diff --git a/pwa/data/contributors.json b/pwa/data/contributors.json index 042089049..56b3ad326 100644 --- a/pwa/data/contributors.json +++ b/pwa/data/contributors.json @@ -2,30 +2,15 @@ { "login": "dunglas", "repos": [ - { - "repo": "postman-collection-generator", - "contributions": 3, - "url": "https://github.com/api-platform/postman-collection-generator" - }, { "repo": "schema-generator", "contributions": 240, "url": "https://github.com/api-platform/schema-generator" }, { - "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", - "contributions": 73, - "url": "https://github.com/api-platform/demo" + "repo": "postman-collection-generator", + "contributions": 3, + "url": "https://github.com/api-platform/postman-collection-generator" }, { "repo": "api-doc-parser", @@ -37,61 +22,71 @@ "contributions": 130, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "website", + "contributions": 243, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "demo", + "contributions": 73, + "url": "https://github.com/api-platform/demo" + }, { "repo": "admin", "contributions": 164, "url": "https://github.com/api-platform/admin" }, + { + "repo": "api-platform", + "contributions": 473, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "api-pack", "contributions": 19, "url": "https://github.com/api-platform/api-pack" }, - { - "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": "docker-compose-prod", - "contributions": 4, - "url": "https://github.com/api-platform/docker-compose-prod" - }, { "repo": ".github", "contributions": 10, "url": "https://github.com/api-platform/.github" }, - { - "repo": "activity-pub", - "contributions": 1, - "url": "https://github.com/api-platform/activity-pub" - }, { "repo": "openapi", "contributions": 3, "url": "https://github.com/api-platform/openapi" }, + { + "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": "admin-meta", "contributions": 1, "url": "https://github.com/api-platform/admin-meta" }, + { + "repo": "activity-pub", + "contributions": 1, + "url": "https://github.com/api-platform/activity-pub" + }, { "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, @@ -102,6 +97,16 @@ "contributions": 3, "url": "https://github.com/api-platform/state" }, + { + "repo": "ramsey-uuid", + "contributions": 4, + "url": "https://github.com/api-platform/ramsey-uuid" + }, + { + "repo": "http-cache", + "contributions": 12, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "elasticsearch", "contributions": 8, @@ -113,35 +118,30 @@ "url": "https://github.com/api-platform/graphql" }, { - "repo": "ramsey-uuid", - "contributions": 4, - "url": "https://github.com/api-platform/ramsey-uuid" + "repo": "laravel", + "contributions": 22, + "url": "https://github.com/api-platform/laravel" }, { "repo": "documentation", "contributions": 13, "url": "https://github.com/api-platform/documentation" }, - { - "repo": "laravel", - "contributions": 22, - "url": "https://github.com/api-platform/laravel" - }, { "repo": "serializer", "contributions": 87, "url": "https://github.com/api-platform/serializer" }, - { - "repo": "vulcain", - "contributions": 176, - "url": "https://github.com/dunglas/vulcain" - }, { "repo": "mercure", - "contributions": 769, + "contributions": 860, "url": "https://github.com/dunglas/mercure" }, + { + "repo": "vulcain", + "contributions": 184, + "url": "https://github.com/dunglas/vulcain" + }, { "repo": "symfony", "contributions": 21, @@ -159,7 +159,7 @@ } ], "rank": 1, - "contributions": 5328, + "contributions": 5427, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/57224?v=4", "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. ", @@ -173,27 +173,12 @@ "repos": [ { "repo": "schema-generator", - "contributions": 12, + "contributions": 14, "url": "https://github.com/api-platform/schema-generator" }, - { - "repo": "website", - "contributions": 89, - "url": "https://github.com/api-platform/website" - }, - { - "repo": "api-platform", - "contributions": 59, - "url": "https://github.com/api-platform/api-platform" - }, - { - "repo": "demo", - "contributions": 5, - "url": "https://github.com/api-platform/demo" - }, { "repo": "api-doc-parser", - "contributions": 32, + "contributions": 39, "url": "https://github.com/api-platform/api-doc-parser" }, { @@ -201,11 +186,26 @@ "contributions": 19, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "website", + "contributions": 92, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "demo", + "contributions": 6, + "url": "https://github.com/api-platform/demo" + }, { "repo": "admin", "contributions": 39, "url": "https://github.com/api-platform/admin" }, + { + "repo": "api-platform", + "contributions": 59, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "api-pack", "contributions": 2, @@ -226,11 +226,6 @@ "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, @@ -241,64 +236,69 @@ "contributions": 36, "url": "https://github.com/api-platform/state" }, + { + "repo": "ramsey-uuid", + "contributions": 52, + "url": "https://github.com/api-platform/ramsey-uuid" + }, + { + "repo": "http-cache", + "contributions": 80, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "elasticsearch", - "contributions": 122, + "contributions": 127, "url": "https://github.com/api-platform/elasticsearch" }, { "repo": "graphql", - "contributions": 218, + "contributions": 248, "url": "https://github.com/api-platform/graphql" }, { - "repo": "ramsey-uuid", - "contributions": 49, - "url": "https://github.com/api-platform/ramsey-uuid" + "repo": "laravel", + "contributions": 235, + "url": "https://github.com/api-platform/laravel" }, { "repo": "documentation", - "contributions": 60, + "contributions": 63, "url": "https://github.com/api-platform/documentation" }, - { - "repo": "laravel", - "contributions": 172, - "url": "https://github.com/api-platform/laravel" - }, { "repo": "serializer", - "contributions": 249, + "contributions": 284, "url": "https://github.com/api-platform/serializer" }, - { - "repo": "vulcain", - "contributions": 2, - "url": "https://github.com/dunglas/vulcain" - }, { "repo": "mercure", "contributions": 4, "url": "https://github.com/dunglas/mercure" }, + { + "repo": "vulcain", + "contributions": 2, + "url": "https://github.com/dunglas/vulcain" + }, { "repo": "symfony", - "contributions": 492, + "contributions": 562, "url": "https://github.com/api-platform/symfony" }, { "repo": "core", - "contributions": 2229, + "contributions": 2524, "url": "https://github.com/api-platform/core" }, { "repo": "docs", - "contributions": 340, + "contributions": 345, "url": "https://github.com/api-platform/docs" } ], "rank": 2, - "contributions": 4533, + "contributions": 5059, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/1321971?v=4", "bio": "@api-platform @keymetrics", @@ -310,25 +310,15 @@ { "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": "api-platform", - "contributions": 18, - "url": "https://github.com/api-platform/api-platform" - }, - { - "repo": "demo", - "contributions": 424, - "url": "https://github.com/api-platform/demo" + "repo": "postman-collection-generator", + "contributions": 30, + "url": "https://github.com/api-platform/postman-collection-generator" }, { "repo": "api-doc-parser", @@ -340,11 +330,21 @@ "contributions": 1, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "demo", + "contributions": 460, + "url": "https://github.com/api-platform/demo" + }, { "repo": "admin", "contributions": 3, "url": "https://github.com/api-platform/admin" }, + { + "repo": "api-platform", + "contributions": 19, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "openapi", "contributions": 15, @@ -355,11 +355,6 @@ "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, @@ -370,6 +365,16 @@ "contributions": 3, "url": "https://github.com/api-platform/state" }, + { + "repo": "ramsey-uuid", + "contributions": 2, + "url": "https://github.com/api-platform/ramsey-uuid" + }, + { + "repo": "http-cache", + "contributions": 7, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "elasticsearch", "contributions": 11, @@ -381,20 +386,15 @@ "url": "https://github.com/api-platform/graphql" }, { - "repo": "ramsey-uuid", - "contributions": 2, - "url": "https://github.com/api-platform/ramsey-uuid" + "repo": "laravel", + "contributions": 3, + "url": "https://github.com/api-platform/laravel" }, { "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, @@ -402,12 +402,12 @@ }, { "repo": "symfony", - "contributions": 54, + "contributions": 55, "url": "https://github.com/api-platform/symfony" }, { "repo": "core", - "contributions": 164, + "contributions": 168, "url": "https://github.com/api-platform/core" }, { @@ -417,7 +417,7 @@ } ], "rank": 3, - "contributions": 860, + "contributions": 903, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/407859?v=4", "bio": null, @@ -434,21 +434,6 @@ "contributions": 40, "url": "https://github.com/api-platform/schema-generator" }, - { - "repo": "website", - "contributions": 23, - "url": "https://github.com/api-platform/website" - }, - { - "repo": "api-platform", - "contributions": 3, - "url": "https://github.com/api-platform/api-platform" - }, - { - "repo": "demo", - "contributions": 21, - "url": "https://github.com/api-platform/demo" - }, { "repo": "api-doc-parser", "contributions": 56, @@ -459,11 +444,26 @@ "contributions": 11, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "website", + "contributions": 23, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "demo", + "contributions": 21, + "url": "https://github.com/api-platform/demo" + }, { "repo": "admin", "contributions": 175, "url": "https://github.com/api-platform/admin" }, + { + "repo": "api-platform", + "contributions": 3, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "api-platform-doc-parsing-check", "contributions": 2, @@ -484,11 +484,6 @@ "contributions": 8, "url": "https://github.com/api-platform/json-schema" }, - { - "repo": "http-cache", - "contributions": 4, - "url": "https://github.com/api-platform/http-cache" - }, { "repo": "metadata", "contributions": 17, @@ -500,20 +495,25 @@ "url": "https://github.com/api-platform/state" }, { - "repo": "elasticsearch", - "contributions": 2, - "url": "https://github.com/api-platform/elasticsearch" + "repo": "ramsey-uuid", + "contributions": 1, + "url": "https://github.com/api-platform/ramsey-uuid" + }, + { + "repo": "http-cache", + "contributions": 4, + "url": "https://github.com/api-platform/http-cache" + }, + { + "repo": "elasticsearch", + "contributions": 2, + "url": "https://github.com/api-platform/elasticsearch" }, { "repo": "graphql", "contributions": 72, "url": "https://github.com/api-platform/graphql" }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "laravel", "contributions": 1, @@ -558,16 +558,16 @@ "contributions": 1, "url": "https://github.com/api-platform/schema-generator" }, - { - "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": "api-platform", + "contributions": 77, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "docker-compose-prod", "contributions": 2, @@ -578,16 +578,16 @@ "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, "url": "https://github.com/api-platform/metadata" }, + { + "repo": "http-cache", + "contributions": 1, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "graphql", "contributions": 24, @@ -603,16 +603,16 @@ "contributions": 29, "url": "https://github.com/api-platform/serializer" }, - { - "repo": "vulcain", - "contributions": 10, - "url": "https://github.com/dunglas/vulcain" - }, { "repo": "mercure", "contributions": 2, "url": "https://github.com/dunglas/mercure" }, + { + "repo": "vulcain", + "contributions": 10, + "url": "https://github.com/dunglas/vulcain" + }, { "repo": "core", "contributions": 333, @@ -636,26 +636,26 @@ { "login": "ginifizz", "repos": [ - { - "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": "website", + "contributions": 356, + "url": "https://github.com/api-platform/website" + }, { "repo": "admin", "contributions": 2, "url": "https://github.com/api-platform/admin" }, + { + "repo": "api-platform", + "contributions": 2, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "vulcain", "contributions": 3, @@ -663,12 +663,12 @@ }, { "repo": "docs", - "contributions": 7, + "contributions": 8, "url": "https://github.com/api-platform/docs" } ], "rank": 6, - "contributions": 362, + "contributions": 372, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/16579730?v=4", "bio": null, @@ -685,41 +685,41 @@ "contributions": 2, "url": "https://github.com/api-platform/schema-generator" }, - { - "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": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" + }, { "repo": "admin", "contributions": 5, "url": "https://github.com/api-platform/admin" }, { - "repo": "json-schema", - "contributions": 1, - "url": "https://github.com/api-platform/json-schema" + "repo": "api-platform", + "contributions": 3, + "url": "https://github.com/api-platform/api-platform" }, { - "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": "metadata", "contributions": 16, "url": "https://github.com/api-platform/metadata" }, + { + "repo": "http-cache", + "contributions": 1, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "graphql", "contributions": 9, @@ -774,16 +774,16 @@ "contributions": 1, "url": "https://github.com/api-platform/api-platform" }, - { - "repo": "http-cache", - "contributions": 1, - "url": "https://github.com/api-platform/http-cache" - }, { "repo": "metadata", "contributions": 3, "url": "https://github.com/api-platform/metadata" }, + { + "repo": "http-cache", + "contributions": 1, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "graphql", "contributions": 8, @@ -852,11 +852,65 @@ "contributions": 117, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/46444652?v=4", - "bio": "Lead Dev, Speaker and Open Source contributor", - "name": "👨‍💻📊 Vincent Amstoutz", + "bio": "Lead Dev, Speaker & OSS Contributor | Also freelance", + "name": " Vincent Amstoutz", "location": "Lyon", "company": "@coopTilleuls", - "blog": "https://www.linkedin.com/in/vincent-amstoutz" + "blog": "https://vince-amstoutz.tech" + }, + { + "login": "VincentLanglet", + "repos": [ + { + "repo": "ramsey-uuid", + "contributions": 1, + "url": "https://github.com/api-platform/ramsey-uuid" + }, + { + "repo": "http-cache", + "contributions": 4, + "url": "https://github.com/api-platform/http-cache" + }, + { + "repo": "elasticsearch", + "contributions": 5, + "url": "https://github.com/api-platform/elasticsearch" + }, + { + "repo": "graphql", + "contributions": 9, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "laravel", + "contributions": 5, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "serializer", + "contributions": 10, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "symfony", + "contributions": 15, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 41, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 10, + "contributions": 90, + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/9052536?v=4", + "bio": null, + "name": "Vincent Langlet", + "location": "Paris", + "company": null, + "blog": "" }, { "login": "mysiar", @@ -887,7 +941,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 10, + "rank": 11, "contributions": 86, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/13708162?v=4", @@ -941,7 +995,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 11, + "rank": 12, "contributions": 85, "avatar_url": "https://avatars.githubusercontent.com/u/804625?v=4", "bio": "Cofounder & CTO at @kor-care. Previously VPoE at @birdiecare, @kametventures @symfony & @api-platform core team member.", @@ -953,26 +1007,26 @@ { "login": "Simperfit", "repos": [ - { - "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": "website", + "contributions": 4, + "url": "https://github.com/api-platform/website" + }, { "repo": "admin", "contributions": 2, "url": "https://github.com/api-platform/admin" }, + { + "repo": "api-platform", + "contributions": 3, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "api-pack", "contributions": 1, @@ -999,7 +1053,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 12, + "rank": 13, "contributions": 74, "avatar_url": "https://avatars.githubusercontent.com/u/3451634?v=4", "bio": "Working for @izisolutions ex: @coopTilleuls \r\n@cDaed on twbs\r\nhttps://www.patreon.com/simperfit", @@ -1047,7 +1101,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 13, + "rank": 14, "contributions": 69, "avatar_url": "https://avatars.githubusercontent.com/u/1218389?v=4", "bio": null, @@ -1090,7 +1144,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 14, + "rank": 15, "contributions": 62, "avatar_url": "https://avatars.githubusercontent.com/u/5175937?v=4", "bio": "Web developer.", @@ -1099,60 +1153,6 @@ "company": "webmozarts.com", "blog": "https://fr.linkedin.com/in/theofidry" }, - { - "login": "VincentLanglet", - "repos": [ - { - "repo": "http-cache", - "contributions": 3, - "url": "https://github.com/api-platform/http-cache" - }, - { - "repo": "elasticsearch", - "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": "laravel", - "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": "core", - "contributions": 21, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 15, - "contributions": 60, - "isCoreTeam": true, - "avatar_url": "https://avatars.githubusercontent.com/u/9052536?v=4", - "bio": null, - "name": "Vincent Langlet", - "location": "Paris", - "company": null, - "blog": "" - }, { "login": "norkunas", "repos": [ @@ -1205,9 +1205,9 @@ "url": "https://github.com/api-platform/schema-generator" }, { - "repo": "api-platform", - "contributions": 4, - "url": "https://github.com/api-platform/api-platform" + "repo": "api-doc-parser", + "contributions": 1, + "url": "https://github.com/api-platform/api-doc-parser" }, { "repo": "demo", @@ -1215,20 +1215,20 @@ "url": "https://github.com/api-platform/demo" }, { - "repo": "api-doc-parser", + "repo": "api-platform", + "contributions": 4, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "mercure", "contributions": 1, - "url": "https://github.com/api-platform/api-doc-parser" + "url": "https://github.com/dunglas/mercure" }, { "repo": "vulcain", "contributions": 1, "url": "https://github.com/dunglas/vulcain" }, - { - "repo": "mercure", - "contributions": 1, - "url": "https://github.com/dunglas/mercure" - }, { "repo": "core", "contributions": 3, @@ -1253,14 +1253,14 @@ "login": "bendavies", "repos": [ { - "repo": "http-cache", + "repo": "metadata", "contributions": 1, - "url": "https://github.com/api-platform/http-cache" + "url": "https://github.com/api-platform/metadata" }, { - "repo": "metadata", + "repo": "http-cache", "contributions": 1, - "url": "https://github.com/api-platform/metadata" + "url": "https://github.com/api-platform/http-cache" }, { "repo": "graphql", @@ -1321,14 +1321,14 @@ "url": "https://github.com/api-platform/state" }, { - "repo": "documentation", + "repo": "laravel", "contributions": 1, - "url": "https://github.com/api-platform/documentation" + "url": "https://github.com/api-platform/laravel" }, { - "repo": "laravel", + "repo": "documentation", "contributions": 1, - "url": "https://github.com/api-platform/laravel" + "url": "https://github.com/api-platform/documentation" }, { "repo": "serializer", @@ -1360,6 +1360,59 @@ "company": "Coopérative des Tilleuls", "blog": "https://knot.gheb.dev" }, + { + "login": "aaa2000", + "repos": [ + { + "repo": "demo", + "contributions": 2, + "url": "https://github.com/api-platform/demo" + }, + { + "repo": "json-schema", + "contributions": 1, + "url": "https://github.com/api-platform/json-schema" + }, + { + "repo": "metadata", + "contributions": 3, + "url": "https://github.com/api-platform/metadata" + }, + { + "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": 7, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 28, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 2, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 20, + "contributions": 46, + "avatar_url": "https://avatars.githubusercontent.com/u/163941?v=4", + "bio": null, + "name": null, + "location": "France", + "company": null, + "blog": "" + }, { "login": "alOneh", "repos": [ @@ -1374,7 +1427,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 20, + "rank": 21, "contributions": 44, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/758625?v=4", @@ -1385,33 +1438,87 @@ "blog": "" }, { - "login": "toofff", + "login": "Maxcastel", "repos": [ { - "repo": "website", - "contributions": 15, - "url": "https://github.com/api-platform/website" + "repo": "ramsey-uuid", + "contributions": 1, + "url": "https://github.com/api-platform/ramsey-uuid" }, { - "repo": "api-platform", - "contributions": 3, - "url": "https://github.com/api-platform/api-platform" + "repo": "http-cache", + "contributions": 1, + "url": "https://github.com/api-platform/http-cache" }, { - "repo": "demo", + "repo": "elasticsearch", "contributions": 1, - "url": "https://github.com/api-platform/demo" + "url": "https://github.com/api-platform/elasticsearch" + }, + { + "repo": "graphql", + "contributions": 2, + "url": "https://github.com/api-platform/graphql" }, + { + "repo": "laravel", + "contributions": 4, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "serializer", + "contributions": 2, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "symfony", + "contributions": 7, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 25, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 22, + "contributions": 43, + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/92802347?v=4", + "bio": null, + "name": null, + "location": null, + "company": "@coopTilleuls", + "blog": "" + }, + { + "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": "demo", + "contributions": 1, + "url": "https://github.com/api-platform/demo" + }, { "repo": "admin", "contributions": 1, "url": "https://github.com/api-platform/admin" }, + { + "repo": "api-platform", + "contributions": 3, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": ".github", "contributions": 3, @@ -1428,10 +1535,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 21, + "rank": 23, "contributions": 42, "avatar_url": "https://avatars.githubusercontent.com/u/966550?v=4", - "bio": "Staff Developer @coveo / Ex-@coopTilleuls ", + "bio": null, "name": "Toofff", "location": "Québec, Canada", "company": "@coveo", @@ -1456,7 +1563,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 22, + "rank": 24, "contributions": 41, "avatar_url": "https://avatars.githubusercontent.com/u/1398469?v=4", "bio": null, @@ -1469,14 +1576,14 @@ "login": "silverbackdan", "repos": [ { - "repo": "http-cache", + "repo": "metadata", "contributions": 1, - "url": "https://github.com/api-platform/http-cache" + "url": "https://github.com/api-platform/metadata" }, { - "repo": "metadata", + "repo": "http-cache", "contributions": 1, - "url": "https://github.com/api-platform/metadata" + "url": "https://github.com/api-platform/http-cache" }, { "repo": "serializer", @@ -1499,7 +1606,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 23, + "rank": 25, "contributions": 40, "avatar_url": "https://avatars.githubusercontent.com/u/25174262?v=4", "bio": "Developer and director at @silverbackis ", @@ -1516,16 +1623,16 @@ "contributions": 17, "url": "https://github.com/api-platform/website" }, - { - "repo": "api-platform", - "contributions": 1, - "url": "https://github.com/api-platform/api-platform" - }, { "repo": "demo", "contributions": 14, "url": "https://github.com/api-platform/demo" }, + { + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "core", "contributions": 1, @@ -1537,7 +1644,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 24, + "rank": 26, "contributions": 39, "avatar_url": "https://avatars.githubusercontent.com/u/10513229?v=4", "bio": null, @@ -1546,6 +1653,39 @@ "company": null, "blog": "" }, + { + "login": "jfcoz", + "repos": [ + { + "repo": "website", + "contributions": 8, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "demo", + "contributions": 24, + "url": "https://github.com/api-platform/demo" + }, + { + "repo": "api-platform", + "contributions": 2, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "mercure", + "contributions": 2, + "url": "https://github.com/dunglas/mercure" + } + ], + "rank": 27, + "contributions": 36, + "avatar_url": "https://avatars.githubusercontent.com/u/16775825?v=4", + "bio": "Site Reliability Engineer @coopTilleuls", + "name": "Julien Francoz", + "location": "Nantes, France", + "company": "Les-Tilleuls.coop @coopTilleuls ", + "blog": "https://julien.francoz.net/" + }, { "login": "Romaixn", "repos": [ @@ -1580,7 +1720,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 25, + "rank": 28, "contributions": 34, "avatar_url": "https://avatars.githubusercontent.com/u/18333296?v=4", "bio": "Developer @ Les-Tilleuls.coop", @@ -1590,37 +1730,38 @@ "blog": "https://rherault.dev" }, { - "login": "jfcoz", + "login": "PawelSuwinski", "repos": [ { - "repo": "website", - "contributions": 8, - "url": "https://github.com/api-platform/website" + "repo": "schema-generator", + "contributions": 6, + "url": "https://github.com/api-platform/schema-generator" }, { - "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" }, { - "repo": "demo", - "contributions": 22, - "url": "https://github.com/api-platform/demo" + "repo": "admin", + "contributions": 21, + "url": "https://github.com/api-platform/admin" }, { - "repo": "mercure", - "contributions": 2, - "url": "https://github.com/dunglas/mercure" + "repo": "docs", + "contributions": 5, + "url": "https://github.com/api-platform/docs" } ], - "rank": 26, - "contributions": 34, - "avatar_url": "https://avatars.githubusercontent.com/u/16775825?v=4", - "bio": "Site Reliability Engineer @coopTilleuls", - "name": "Julien Francoz", - "location": "Nantes, France", - "company": "Les-Tilleuls.coop @coopTilleuls ", - "blog": "https://julien.francoz.net/" + "rank": 29, + "contributions": 33, + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/1256986?v=4", + "bio": null, + "name": "Paweł Suwiński", + "location": "Poland", + "company": null, + "blog": "" }, { "login": "caseyWebb", @@ -1631,7 +1772,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 27, + "rank": 30, "contributions": 33, "avatar_url": "https://avatars.githubusercontent.com/u/5419074?v=4", "bio": "just some dude that writes code and grows plants.", @@ -1663,16 +1804,16 @@ "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": "documentation", + "contributions": 1, + "url": "https://github.com/api-platform/documentation" + }, { "repo": "serializer", "contributions": 1, @@ -1699,7 +1840,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 28, + "rank": 31, "contributions": 32, "avatar_url": "https://avatars.githubusercontent.com/u/12966574?v=4", "bio": "#Docker 🐋 #PHP 🐘; Back-end Developer", @@ -1737,76 +1878,75 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 29, + "rank": 32, "contributions": 32, "avatar_url": "https://avatars.githubusercontent.com/u/42447585?v=4", "bio": "@koseven Core Member                      \r\nApp and Web-Developer", "name": "Tobias Oitzinger", "location": "Vienna, Austria", - "company": "@xcoorp", + "company": null, "blog": "https://toitzi.dev" }, { - "login": "PawelSuwinski", + "login": "ttskch", "repos": [ { - "repo": "schema-generator", - "contributions": 4, - "url": "https://github.com/api-platform/schema-generator" + "repo": "openapi", + "contributions": 1, + "url": "https://github.com/api-platform/openapi" }, { - "repo": "api-doc-parser", + "repo": "metadata", "contributions": 1, - "url": "https://github.com/api-platform/api-doc-parser" + "url": "https://github.com/api-platform/metadata" }, { - "repo": "admin", - "contributions": 20, - "url": "https://github.com/api-platform/admin" + "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": 6, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 17, + "url": "https://github.com/api-platform/core" }, { "repo": "docs", - "contributions": 5, + "contributions": 4, "url": "https://github.com/api-platform/docs" } ], - "rank": 30, - "contributions": 30, - "isCoreTeam": true, - "avatar_url": "https://avatars.githubusercontent.com/u/1256986?v=4", + "rank": 33, + "contributions": 32, + "avatar_url": "https://avatars.githubusercontent.com/u/4360663?v=4", "bio": null, - "name": "Paweł Suwiński", - "location": "Poland", - "company": null, - "blog": "" + "name": "Takashi Kanemoto", + "location": "Kobe, Hyogo, Japan", + "company": "Kannade Inc.", + "blog": "https://ttskch.com" }, { - "login": "lyrixx", + "login": "alexisLefebvre", "repos": [ { - "repo": "api-platform", - "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "repo": "demo", + "contributions": 4, + "url": "https://github.com/api-platform/demo" }, { - "repo": "metadata", + "repo": "mercure", "contributions": 2, - "url": "https://github.com/api-platform/metadata" - }, - { - "repo": "graphql", - "contributions": 1, - "url": "https://github.com/api-platform/graphql" - }, - { - "repo": "serializer", - "contributions": 3, - "url": "https://github.com/api-platform/serializer" - }, - { - "repo": "vulcain", - "contributions": 1, - "url": "https://github.com/dunglas/vulcain" + "url": "https://github.com/dunglas/mercure" }, { "repo": "symfony", @@ -1815,131 +1955,88 @@ }, { "repo": "core", - "contributions": 15, + "contributions": 13, "url": "https://github.com/api-platform/core" }, { "repo": "docs", - "contributions": 6, + "contributions": 11, "url": "https://github.com/api-platform/docs" } ], - "rank": 31, - "contributions": 30, - "avatar_url": "https://avatars.githubusercontent.com/u/408368?v=4", - "bio": "DevOps @jolicode @redirectionio ; \r\n@symfony Core Team\r\n", - "name": "Grégoire Pineau", - "location": "Paris, France", - "company": "@jolicode", - "blog": "" + "rank": 34, + "contributions": 31, + "avatar_url": "https://avatars.githubusercontent.com/u/2071331?v=4", + "bio": "Former bioinformatician, @symfony enthusiast, former Web developer at @Troopers, now working for @coopTilleuls ", + "name": "Alexis Lefebvre", + "location": "Nantes, France", + "company": null, + "blog": "https://alexislefebvre.com/" }, { - "login": "ttskch", + "login": "lyrixx", "repos": [ { - "repo": "openapi", + "repo": "api-platform", "contributions": 1, - "url": "https://github.com/api-platform/openapi" + "url": "https://github.com/api-platform/api-platform" }, { "repo": "metadata", - "contributions": 1, + "contributions": 2, "url": "https://github.com/api-platform/metadata" }, { - "repo": "laravel", - "contributions": 2, - "url": "https://github.com/api-platform/laravel" + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" }, { "repo": "serializer", - "contributions": 1, + "contributions": 3, "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": [ + "repo": "vulcain", + "contributions": 1, + "url": "https://github.com/dunglas/vulcain" + }, { - "repo": "metadata", - "contributions": 4, - "url": "https://github.com/api-platform/metadata" + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", - "contributions": 23, + "contributions": 15, "url": "https://github.com/api-platform/core" }, { "repo": "docs", - "contributions": 2, + "contributions": 6, "url": "https://github.com/api-platform/docs" } ], - "rank": 33, - "contributions": 29, - "avatar_url": "https://avatars.githubusercontent.com/u/4228646?v=4", - "bio": "CoFounder & CTO @ Dotfile", - "name": "Titouan B", - "location": "FRANCE", - "company": "@DotfileTech", - "blog": "https://www.dotfile.com" + "rank": 35, + "contributions": 30, + "avatar_url": "https://avatars.githubusercontent.com/u/408368?v=4", + "bio": "DevOps @jolicode @redirectionio ; \r\n@symfony Core Team\r\n", + "name": "Grégoire Pineau", + "location": "Paris, France", + "company": "@jolicode", + "blog": "" }, { - "login": "aaa2000", + "login": "Nightbr", "repos": [ - { - "repo": "demo", - "contributions": 1, - "url": "https://github.com/api-platform/demo" - }, - { - "repo": "json-schema", - "contributions": 1, - "url": "https://github.com/api-platform/json-schema" - }, { "repo": "metadata", - "contributions": 3, - "url": "https://github.com/api-platform/metadata" - }, - { - "repo": "serializer", - "contributions": 1, - "url": "https://github.com/api-platform/serializer" - }, - { - "repo": "symfony", "contributions": 4, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/metadata" }, { "repo": "core", - "contributions": 17, + "contributions": 23, "url": "https://github.com/api-platform/core" }, { @@ -1948,14 +2045,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 34, + "rank": 36, "contributions": 29, - "avatar_url": "https://avatars.githubusercontent.com/u/163941?v=4", - "bio": null, - "name": null, + "avatar_url": "https://avatars.githubusercontent.com/u/4228646?v=4", + "bio": "CoFounder & CTO @ Dotfile", + "name": "Titouan B", "location": "France", - "company": null, - "blog": "" + "company": "@DotfileTech", + "blog": "https://www.dotfile.com" }, { "login": "maks-rafalko", @@ -1976,7 +2073,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 35, + "rank": 37, "contributions": 27, "avatar_url": "https://avatars.githubusercontent.com/u/3725595?v=4", "bio": "Software Engineer, mainly PHP and Node.js.\r\n\r\nCreator of https://infection.github.io", @@ -2009,7 +2106,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 36, + "rank": 38, "contributions": 26, "avatar_url": "https://avatars.githubusercontent.com/u/6824784?v=4", "bio": null, @@ -2027,14 +2124,14 @@ "url": "https://github.com/api-platform/json-schema" }, { - "repo": "http-cache", + "repo": "metadata", "contributions": 1, - "url": "https://github.com/api-platform/http-cache" + "url": "https://github.com/api-platform/metadata" }, { - "repo": "metadata", + "repo": "http-cache", "contributions": 1, - "url": "https://github.com/api-platform/metadata" + "url": "https://github.com/api-platform/http-cache" }, { "repo": "elasticsearch", @@ -2062,7 +2159,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 37, + "rank": 39, "contributions": 25, "avatar_url": "https://avatars.githubusercontent.com/u/33932697?v=4", "bio": "Back-end developer", @@ -2084,6 +2181,11 @@ "contributions": 2, "url": "https://github.com/api-platform/metadata" }, + { + "repo": "ramsey-uuid", + "contributions": 1, + "url": "https://github.com/api-platform/ramsey-uuid" + }, { "repo": "elasticsearch", "contributions": 1, @@ -2094,11 +2196,6 @@ "contributions": 1, "url": "https://github.com/api-platform/graphql" }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "serializer", "contributions": 2, @@ -2115,7 +2212,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 38, + "rank": 40, "contributions": 25, "avatar_url": "https://avatars.githubusercontent.com/u/95523073?v=4", "bio": null, @@ -2127,16 +2224,6 @@ { "login": "Fabious", "repos": [ - { - "repo": "website", - "contributions": 9, - "url": "https://github.com/api-platform/website" - }, - { - "repo": "api-platform", - "contributions": 2, - "url": "https://github.com/api-platform/api-platform" - }, { "repo": "api-doc-parser", "contributions": 1, @@ -2147,11 +2234,21 @@ "contributions": 2, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "website", + "contributions": 9, + "url": "https://github.com/api-platform/website" + }, { "repo": "admin", "contributions": 4, "url": "https://github.com/api-platform/admin" }, + { + "repo": "api-platform", + "contributions": 2, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "mercure", "contributions": 2, @@ -2163,7 +2260,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 39, + "rank": 41, "contributions": 23, "avatar_url": "https://avatars.githubusercontent.com/u/1923784?v=4", "bio": "Expert Front Developper @coopTilleuls 🧙‍♂️\r\n❤️ Typescript and React", @@ -2196,7 +2293,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 40, + "rank": 42, "contributions": 23, "avatar_url": "https://avatars.githubusercontent.com/u/481937?v=4", "bio": null, @@ -2224,14 +2321,14 @@ "url": "https://github.com/api-platform/state" }, { - "repo": "vulcain", + "repo": "mercure", "contributions": 1, - "url": "https://github.com/dunglas/vulcain" + "url": "https://github.com/dunglas/mercure" }, { - "repo": "mercure", + "repo": "vulcain", "contributions": 1, - "url": "https://github.com/dunglas/mercure" + "url": "https://github.com/dunglas/vulcain" }, { "repo": "symfony", @@ -2249,7 +2346,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 41, + "rank": 43, "contributions": 22, "avatar_url": "https://avatars.githubusercontent.com/u/7502063?v=4", "bio": "Software Architect // Maintainer @symfony, @thephpleague, @lexik // Co-Founder & CEO @bakslashHQ ", @@ -2297,7 +2394,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 42, + "rank": 44, "contributions": 21, "avatar_url": "https://avatars.githubusercontent.com/u/24696606?v=4", "bio": null, @@ -2325,7 +2422,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 43, + "rank": 45, "contributions": 21, "avatar_url": "https://avatars.githubusercontent.com/u/7404452?v=4", "bio": null, @@ -2337,16 +2434,16 @@ { "login": "darthf1", "repos": [ - { - "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": "api-platform", + "contributions": 6, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "elasticsearch", "contributions": 3, @@ -2373,7 +2470,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 44, + "rank": 46, "contributions": 20, "avatar_url": "https://avatars.githubusercontent.com/u/17253332?v=4", "bio": null, @@ -2390,16 +2487,21 @@ "contributions": 1, "url": "https://github.com/api-platform/openapi" }, - { - "repo": "http-cache", - "contributions": 1, - "url": "https://github.com/api-platform/http-cache" - }, { "repo": "metadata", "contributions": 2, "url": "https://github.com/api-platform/metadata" }, + { + "repo": "ramsey-uuid", + "contributions": 1, + "url": "https://github.com/api-platform/ramsey-uuid" + }, + { + "repo": "http-cache", + "contributions": 1, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "elasticsearch", "contributions": 1, @@ -2410,11 +2512,6 @@ "contributions": 2, "url": "https://github.com/api-platform/graphql" }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "laravel", "contributions": 1, @@ -2436,7 +2533,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 45, + "rank": 47, "contributions": 20, "avatar_url": "https://avatars.githubusercontent.com/u/4955509?v=4", "bio": null, @@ -2479,7 +2576,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 46, + "rank": 48, "contributions": 20, "avatar_url": "https://avatars.githubusercontent.com/u/25110039?v=4", "bio": null, @@ -2512,7 +2609,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 47, + "rank": 49, "contributions": 19, "avatar_url": "https://avatars.githubusercontent.com/u/400034?v=4", "bio": "@mongodb PHP and @Symfony core team", @@ -2524,23 +2621,23 @@ { "login": "jocel1", "repos": [ - { - "repo": "http-cache", - "contributions": 6, - "url": "https://github.com/api-platform/http-cache" - }, { "repo": "metadata", "contributions": 1, "url": "https://github.com/api-platform/metadata" }, + { + "repo": "http-cache", + "contributions": 6, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "core", "contributions": 12, "url": "https://github.com/api-platform/core" } ], - "rank": 48, + "rank": 50, "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.", @@ -2568,7 +2665,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 49, + "rank": 51, "contributions": 18, "avatar_url": "https://avatars.githubusercontent.com/u/1427081?v=4", "bio": null, @@ -2580,16 +2677,16 @@ { "login": "Deuchnord", "repos": [ - { - "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": "website", + "contributions": 2, + "url": "https://github.com/api-platform/website" + }, { "repo": "json-schema", "contributions": 1, @@ -2611,10 +2708,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 50, + "rank": 52, "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.", + "bio": "Back-end developer and amateur astronomer. Creator of @Kosmorro.\r\nI eat pain au chocolat at breakfast.", "name": "Deuchnord", "location": "Vendée, France", "company": "Les-Tilleuls.coop", @@ -2629,12 +2726,12 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 51, + "rank": 53, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/5477973?v=4", "bio": "Senior PHP/Symfony developer 🐘 Learning Rust 🦀", "name": null, - "location": "Paris", + "location": null, "company": null, "blog": "" }, @@ -2652,7 +2749,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 52, + "rank": 54, "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.", @@ -2684,16 +2781,16 @@ "contributions": 1, "url": "https://github.com/api-platform/state" }, - { - "repo": "graphql", - "contributions": 2, - "url": "https://github.com/api-platform/graphql" - }, { "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": "serializer", "contributions": 1, @@ -2710,10 +2807,10 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 53, + "rank": 55, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/49146882?v=4", - "bio": "Backend developer working with @symfony and @api-platform", + "bio": "Lead dev, PHP specialist", "name": "Pierre Rebeilleau", "location": "Lille", "company": null, @@ -2738,7 +2835,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 54, + "rank": 56, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/17310106?v=4", "bio": null, @@ -2776,7 +2873,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 55, + "rank": 57, "contributions": 17, "avatar_url": "https://avatars.githubusercontent.com/u/1736542?v=4", "bio": null, @@ -2804,7 +2901,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 56, + "rank": 58, "contributions": 16, "avatar_url": "https://avatars.githubusercontent.com/u/14937343?v=4", "bio": "Lead developer @coopTilleuls ", @@ -2814,46 +2911,31 @@ "blog": "" }, { - "login": "Maxcastel", + "login": "jderusse", "repos": [ { - "repo": "elasticsearch", - "contributions": 1, - "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", - "contributions": 1, - "url": "https://github.com/api-platform/serializer" + "repo": "mercure", + "contributions": 6, + "url": "https://github.com/dunglas/mercure" }, { "repo": "symfony", - "contributions": 5, + "contributions": 2, "url": "https://github.com/api-platform/symfony" }, { "repo": "core", - "contributions": 7, + "contributions": 8, "url": "https://github.com/api-platform/core" } ], - "rank": 57, + "rank": 59, "contributions": 16, - "avatar_url": "https://avatars.githubusercontent.com/u/92802347?v=4", - "bio": null, - "name": null, - "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": "" }, { @@ -2870,7 +2952,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 58, + "rank": 60, "contributions": 16, "avatar_url": "https://avatars.githubusercontent.com/u/1852108?v=4", "bio": "Life is short, live your dream and wear your passion.", @@ -2882,6 +2964,11 @@ { "login": "J3m5", "repos": [ + { + "repo": "api-doc-parser", + "contributions": 12, + "url": "https://github.com/api-platform/api-doc-parser" + }, { "repo": "website", "contributions": 1, @@ -2892,18 +2979,13 @@ "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, + "rank": 61, "contributions": 15, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/5523410?v=4", @@ -2927,7 +3009,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 60, + "rank": 62, "contributions": 15, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/93578303?v=4", @@ -2956,7 +3038,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 61, + "rank": 63, "contributions": 15, "avatar_url": "https://avatars.githubusercontent.com/u/993399?v=4", "bio": null, @@ -2994,7 +3076,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 62, + "rank": 64, "contributions": 15, "avatar_url": "https://avatars.githubusercontent.com/u/15611563?v=4", "bio": null, @@ -3006,23 +3088,23 @@ { "login": "mauchede", "repos": [ - { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" - }, { "repo": "api-doc-parser", "contributions": 4, "url": "https://github.com/api-platform/api-doc-parser" }, + { + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" + }, { "repo": "admin", "contributions": 10, "url": "https://github.com/api-platform/admin" } ], - "rank": 63, + "rank": 65, "contributions": 15, "avatar_url": "https://avatars.githubusercontent.com/u/5702936?v=4", "bio": null, @@ -3034,23 +3116,23 @@ { "login": "ValentinCrochemore", "repos": [ - { - "repo": "website", - "contributions": 3, - "url": "https://github.com/api-platform/website" - }, { "repo": "create-client", "contributions": 5, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "website", + "contributions": 3, + "url": "https://github.com/api-platform/website" + }, { "repo": "docs", "contributions": 6, "url": "https://github.com/api-platform/docs" } ], - "rank": 64, + "rank": 66, "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", @@ -3060,46 +3142,61 @@ "blog": "http://valentin-crochemore.fr" }, { - "login": "jderusse", + "login": "divine", "repos": [ { - "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": "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": 6, + "contributions": 4, "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 2, + "url": "https://github.com/api-platform/docs" } ], - "rank": 65, + "rank": 67, "contributions": 14, - "avatar_url": "https://avatars.githubusercontent.com/u/578547?v=4", - "bio": "@symfony Core contributor", - "name": "Jérémy Derussé", - "location": "Paris, France", - "company": "Blackfire", + "avatar_url": "https://avatars.githubusercontent.com/u/48183131?v=4", + "bio": "Mars", + "name": "Divine", + "location": "Mars", + "company": null, "blog": "" }, { "login": "justinezahiri", "repos": [ - { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" - }, { "repo": "create-client", "contributions": 9, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" + }, { "repo": "admin", "contributions": 1, @@ -3111,7 +3208,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 66, + "rank": 68, "contributions": 14, "avatar_url": "https://avatars.githubusercontent.com/u/41168990?v=4", "bio": "Front-end web developer @cooptilleuls\r\nIronhack alumni.\r\n", @@ -3133,11 +3230,6 @@ "contributions": 1, "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, @@ -3148,6 +3240,16 @@ "contributions": 1, "url": "https://github.com/api-platform/state" }, + { + "repo": "ramsey-uuid", + "contributions": 1, + "url": "https://github.com/api-platform/ramsey-uuid" + }, + { + "repo": "http-cache", + "contributions": 1, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "elasticsearch", "contributions": 1, @@ -3158,11 +3260,6 @@ "contributions": 1, "url": "https://github.com/api-platform/graphql" }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "url": "https://github.com/api-platform/ramsey-uuid" - }, { "repo": "documentation", "contributions": 1, @@ -3184,7 +3281,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 67, + "rank": 69, "contributions": 14, "avatar_url": "https://avatars.githubusercontent.com/u/47776596?v=4", "bio": null, @@ -3227,7 +3324,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 68, + "rank": 70, "contributions": 14, "avatar_url": "https://avatars.githubusercontent.com/u/10139766?v=4", "bio": "developer at @mapado - \r\ncertified Symfony", @@ -3260,7 +3357,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 69, + "rank": 71, "contributions": 13, "avatar_url": "https://avatars.githubusercontent.com/u/47628187?v=4", "bio": null, @@ -3303,7 +3400,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 70, + "rank": 72, "contributions": 13, "avatar_url": "https://avatars.githubusercontent.com/u/129308244?v=4", "bio": null, @@ -3312,49 +3409,6 @@ "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": "" - }, { "login": "lex111", "repos": [ @@ -3369,7 +3423,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 72, + "rank": 73, "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 🧐", @@ -3397,7 +3451,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 73, + "rank": 74, "contributions": 13, "avatar_url": "https://avatars.githubusercontent.com/u/6652670?v=4", "bio": null, @@ -3406,6 +3460,30 @@ "company": null, "blog": "" }, + { + "login": "slax57", + "repos": [ + { + "repo": "admin", + "contributions": 12, + "url": "https://github.com/api-platform/admin" + }, + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 75, + "contributions": 13, + "isCoreTeam": true, + "avatar_url": "https://avatars.githubusercontent.com/u/14542336?v=4", + "bio": null, + "name": "Jean-Baptiste Kaiser", + "location": "France", + "company": "Marmelab", + "blog": "" + }, { "login": "COil", "repos": [ @@ -3425,7 +3503,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 74, + "rank": 76, "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.", @@ -3437,16 +3515,6 @@ { "login": "Gregcop1", "repos": [ - { - "repo": "website", - "contributions": 2, - "url": "https://github.com/api-platform/website" - }, - { - "repo": "demo", - "contributions": 1, - "url": "https://github.com/api-platform/demo" - }, { "repo": "api-doc-parser", "contributions": 1, @@ -3457,13 +3525,23 @@ "contributions": 3, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "website", + "contributions": 2, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "demo", + "contributions": 1, + "url": "https://github.com/api-platform/demo" + }, { "repo": "docs", "contributions": 5, "url": "https://github.com/api-platform/docs" } ], - "rank": 75, + "rank": 77, "contributions": 12, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/1257968?v=4", @@ -3497,7 +3575,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 76, + "rank": 78, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/972456?v=4", "bio": "Weird interesting stuff. Also Swag industries.", @@ -3520,7 +3598,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 77, + "rank": 79, "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)", @@ -3548,7 +3626,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 78, + "rank": 80, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/158935?v=4", "bio": "Senior Backend Engineer", @@ -3576,7 +3654,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 79, + "rank": 81, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/19575068?v=4", "bio": "Developer @unleashedtech 🍁 I do #symfony #react #laravel? #php #web", @@ -3595,47 +3673,23 @@ }, { "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 9, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 80, - "contributions": 12, - "avatar_url": "https://avatars.githubusercontent.com/u/1462821?v=4", - "bio": null, - "name": "Gildas NOËL", - "location": "Tours", - "company": "Ackwa", - "blog": "https://ackwa.fr" - }, - { - "login": "slax57", - "repos": [ - { - "repo": "admin", - "contributions": 11, - "url": "https://github.com/api-platform/admin" + "contributions": 1, + "url": "https://github.com/api-platform/core" }, { "repo": "docs", - "contributions": 1, + "contributions": 9, "url": "https://github.com/api-platform/docs" } ], - "rank": 81, + "rank": 82, "contributions": 12, - "isCoreTeam": true, - "avatar_url": "https://avatars.githubusercontent.com/u/14542336?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1462821?v=4", "bio": null, - "name": "Jean-Baptiste Kaiser", - "location": "France", - "company": "Marmelab", - "blog": "" + "name": "Gildas NOËL", + "location": "Tours", + "company": "Ackwa", + "blog": "https://ackwa.fr" }, { "login": "toby-griffiths", @@ -3656,12 +3710,12 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 82, + "rank": 83, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/4817007?v=4", "bio": null, "name": "Toby Griffiths", - "location": "Manchester, UK", + "location": "Flintshire, Wales", "company": "Cubic Mushroom", "blog": "http://tobyg.net" }, @@ -3684,7 +3738,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 83, + "rank": 84, "contributions": 12, "avatar_url": "https://avatars.githubusercontent.com/u/181734130?v=4", "bio": null, @@ -3696,26 +3750,26 @@ { "login": "bpolaszek", "repos": [ - { - "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", + "repo": "website", "contributions": 1, - "url": "https://github.com/api-platform/http-cache" + "url": "https://github.com/api-platform/website" }, { "repo": "metadata", "contributions": 1, "url": "https://github.com/api-platform/metadata" }, + { + "repo": "http-cache", + "contributions": 1, + "url": "https://github.com/api-platform/http-cache" + }, { "repo": "core", "contributions": 4, @@ -3727,7 +3781,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 84, + "rank": 85, "contributions": 11, "avatar_url": "https://avatars.githubusercontent.com/u/5569077?v=4", "bio": "Software developer using Web technologies.", @@ -3760,7 +3814,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 85, + "rank": 86, "contributions": 11, "avatar_url": "https://avatars.githubusercontent.com/u/99648541?v=4", "bio": "Lead dev at @coopTilleuls ", @@ -3772,11 +3826,6 @@ { "login": "fzaninotto", "repos": [ - { - "repo": "api-platform", - "contributions": 1, - "url": "https://github.com/api-platform/api-platform" - }, { "repo": "demo", "contributions": 1, @@ -3786,9 +3835,14 @@ "repo": "admin", "contributions": 9, "url": "https://github.com/api-platform/admin" + }, + { + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" } ], - "rank": 86, + "rank": 87, "contributions": 11, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/99944?v=4", @@ -3822,7 +3876,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 87, + "rank": 88, "contributions": 11, "avatar_url": "https://avatars.githubusercontent.com/u/449555?v=4", "bio": null, @@ -3850,12 +3904,12 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 88, + "rank": 89, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/1584563?v=4", "bio": "Makes all your codebase go purr. 🐈", "name": "Matthieu Harlé", - "location": "Valenciennes, France", + "location": "Bordeaux, France", "company": "@la-fourche", "blog": "https://matthieuharle.com" }, @@ -3888,7 +3942,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 89, + "rank": 90, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/25710?v=4", "bio": null, @@ -3897,34 +3951,6 @@ "company": "@coopTilleuls", "blog": "https://aegypius.com" }, - { - "login": "alexislefebvre", - "repos": [ - { - "repo": "mercure", - "contributions": 2, - "url": "https://github.com/dunglas/mercure" - }, - { - "repo": "core", - "contributions": 2, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 6, - "url": "https://github.com/api-platform/docs" - } - ], - "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": null, - "blog": "https://alexislefebvre.com/" - }, { "login": "amermchaudhary", "repos": [ @@ -3971,6 +3997,59 @@ "company": "ITE", "blog": "" }, + { + "login": "gharlan", + "repos": [ + { + "repo": "create-client", + "contributions": 1, + "url": "https://github.com/api-platform/create-client" + }, + { + "repo": ".github", + "contributions": 1, + "url": "https://github.com/api-platform/.github" + }, + { + "repo": "elasticsearch", + "contributions": 1, + "url": "https://github.com/api-platform/elasticsearch" + }, + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "vulcain", + "contributions": 1, + "url": "https://github.com/dunglas/vulcain" + }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 93, + "contributions": 10, + "avatar_url": "https://avatars.githubusercontent.com/u/330436?v=4", + "bio": null, + "name": "Gregor Harlan", + "location": "Frankfurt, Germany", + "company": "Yakamara Media GmbH & Co. KG", + "blog": "" + }, { "login": "greg0ire", "repos": [ @@ -3985,7 +4064,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 93, + "rank": 94, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/657779?v=4", "bio": "right proper lad", @@ -4018,7 +4097,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 94, + "rank": 95, "contributions": 10, "avatar_url": "https://avatars.githubusercontent.com/u/5230489?v=4", "bio": "Software engineer in Eventival", @@ -4051,7 +4130,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 95, + "rank": 96, "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 ", @@ -4069,7 +4148,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 96, + "rank": 97, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/8024246?v=4", "bio": "Marketing & Communications manager @coopTilleuls", @@ -4092,10 +4171,10 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 97, + "rank": 98, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/35468476?v=4", - "bio": "\"Simplicity is the ultimate sophistication\"\r\nLeonardo da Vinci", + "bio": "\"Simplicity is the ultimate sophistication\"\r\nLeonardo da Vinci\r\n|\r\n|\r\n\"L’intelligence c’est l’art de poser la bonne question.\"", "name": "Thibault Gattolliat", "location": "Switzerland", "company": "Predige SA", @@ -4115,7 +4194,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 98, + "rank": 99, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/15892761?v=4", "bio": null, @@ -4127,11 +4206,6 @@ { "login": "bcobzh", "repos": [ - { - "repo": "website", - "contributions": 2, - "url": "https://github.com/api-platform/website" - }, { "repo": "api-doc-parser", "contributions": 3, @@ -4142,13 +4216,18 @@ "contributions": 1, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "website", + "contributions": 2, + "url": "https://github.com/api-platform/website" + }, { "repo": "core", "contributions": 3, "url": "https://github.com/api-platform/core" } ], - "rank": 99, + "rank": 100, "contributions": 9, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/49025717?v=4", @@ -4167,7 +4246,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 100, + "rank": 101, "contributions": 9, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/1122076?v=4", @@ -4177,41 +4256,18 @@ "company": "Marmelab", "blog": "" }, - { - "login": "iCodr8", - "repos": [ - { - "repo": "core", - "contributions": 2, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 7, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 101, - "contributions": 9, - "avatar_url": "https://avatars.githubusercontent.com/u/1264033?v=4", - "bio": "Angular, Contao & Symfony", - "name": "Daniel Kiesel", - "location": "Karlsruhe, Germany", - "company": "@Craffft ", - "blog": "https://www.daniel-kiesel.de" - }, { "login": "insekticid", "repos": [ { - "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": "create-client", + "repo": "api-platform", "contributions": 1, - "url": "https://github.com/api-platform/create-client" + "url": "https://github.com/api-platform/api-platform" }, { "repo": "metadata", @@ -4238,6 +4294,39 @@ "company": "Recepty.eu", "blog": "https://www.recepty.eu" }, + { + "login": "jamesisaac", + "repos": [ + { + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 5, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 103, + "contributions": 9, + "avatar_url": "https://avatars.githubusercontent.com/u/1068177?v=4", + "bio": null, + "name": "James Isaac", + "location": "London, UK", + "company": "@m10c", + "blog": "http://jamesisaac.com" + }, { "login": "nawel-les-tilleuls", "repos": [ @@ -4257,7 +4346,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 103, + "rank": 104, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/109156065?v=4", "bio": null, @@ -4281,39 +4370,72 @@ }, { "repo": "docs", - "contributions": 6, + "contributions": 6, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 105, + "contributions": 9, + "avatar_url": "https://avatars.githubusercontent.com/u/6079305?v=4", + "bio": null, + "name": "Pierre", + "location": "France", + "company": null, + "blog": "" + }, + { + "login": "rvanlaak", + "repos": [ + { + "repo": "api-platform", + "contributions": 2, + "url": "https://github.com/api-platform/api-platform" + }, + { + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + }, + { + "repo": "docs", + "contributions": 3, "url": "https://github.com/api-platform/docs" } ], - "rank": 104, + "rank": 106, "contributions": 9, - "avatar_url": "https://avatars.githubusercontent.com/u/6079305?v=4", - "bio": null, - "name": "Pierre", - "location": null, - "company": null, + "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": "thcolin", "repos": [ - { - "repo": "demo", - "contributions": 1, - "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": 105, + "rank": 107, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/9131757?v=4", "bio": "🏴 & Javascript", @@ -4341,7 +4463,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 106, + "rank": 108, "contributions": 9, "avatar_url": "https://avatars.githubusercontent.com/u/2320425?v=4", "bio": null, @@ -4369,7 +4491,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 107, + "rank": 109, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/3920550?v=4", "bio": null, @@ -4392,15 +4514,81 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 108, + "rank": 110, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/3168281?v=4", - "bio": null, + "bio": "Add a bio", "name": "Jibé Barth", - "location": "Bordeaux", + "location": "Bordeaux / Nantes", "company": null, "blog": "https://jibébarth.fr" }, + { + "login": "Renrhaf", + "repos": [ + { + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "demo", + "contributions": 1, + "url": "https://github.com/api-platform/demo" + }, + { + "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": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 111, + "contributions": 8, + "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", + "name": "Quentin Fahrner", + "location": "Strasbourg, France", + "company": "SaaS Production", + "blog": "https://www.uncia.fr" + }, + { + "login": "bonroyage", + "repos": [ + { + "repo": "laravel", + "contributions": 4, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "core", + "contributions": 4, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 112, + "contributions": 8, + "avatar_url": "https://avatars.githubusercontent.com/u/4411748?v=4", + "bio": null, + "name": "Roy", + "location": "Netherlands", + "company": "@goedemiddag ", + "blog": "" + }, { "login": "cedriclombardot", "repos": [ @@ -4410,7 +4598,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 109, + "rank": 113, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/651484?v=4", "bio": null, @@ -4438,7 +4626,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 110, + "rank": 114, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/417823?v=4", "bio": null, @@ -4447,39 +4635,6 @@ "company": null, "blog": "" }, - { - "login": "jamesisaac", - "repos": [ - { - "repo": "api-platform", - "contributions": 1, - "url": "https://github.com/api-platform/api-platform" - }, - { - "repo": "graphql", - "contributions": 1, - "url": "https://github.com/api-platform/graphql" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 5, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 111, - "contributions": 8, - "avatar_url": "https://avatars.githubusercontent.com/u/1068177?v=4", - "bio": null, - "name": "James Isaac", - "location": "London, UK", - "company": "@m10c", - "blog": "http://jamesisaac.com" - }, { "login": "jockos", "repos": [ @@ -4504,7 +4659,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 112, + "rank": 115, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/14978189?v=4", "bio": null, @@ -4537,7 +4692,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 113, + "rank": 116, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/1202965?v=4", "bio": "@coopTilleuls \r\n@larriereguichet ", @@ -4560,7 +4715,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 114, + "rank": 117, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/3356740?v=4", "bio": "Senior SWE @leasecake", @@ -4578,7 +4733,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 115, + "rank": 118, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/53676?v=4", "bio": null, @@ -4606,13 +4761,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 116, + "rank": 119, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/8329789?v=4", "bio": null, "name": "Loïc Frémont", "location": "Rennes, France", - "company": "@akawaka", + "company": "@jolicode", "blog": "" }, { @@ -4624,7 +4779,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 117, + "rank": 120, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/9930093?v=4", "bio": "Digital Product Creator, Artist, Freelancer", @@ -4637,14 +4792,14 @@ "login": "phansys", "repos": [ { - "repo": "http-cache", + "repo": "metadata", "contributions": 1, - "url": "https://github.com/api-platform/http-cache" + "url": "https://github.com/api-platform/metadata" }, { - "repo": "metadata", + "repo": "http-cache", "contributions": 1, - "url": "https://github.com/api-platform/metadata" + "url": "https://github.com/api-platform/http-cache" }, { "repo": "graphql", @@ -4667,7 +4822,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 118, + "rank": 121, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/1231441?v=4", "bio": "Enterprise Solution Architect at @nubity", @@ -4676,34 +4831,6 @@ "company": "@nubity", "blog": "https://linkedin.com/in/jspagnoletti" }, - { - "login": "sh41", - "repos": [ - { - "repo": "create-client", - "contributions": 3, - "url": "https://github.com/api-platform/create-client" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - }, - { - "repo": "docs", - "contributions": 4, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 119, - "contributions": 8, - "avatar_url": "https://avatars.githubusercontent.com/u/6237786?v=4", - "bio": null, - "name": "Steve Hall", - "location": "UK", - "company": null, - "blog": "" - }, { "login": "smatyas", "repos": [ @@ -4723,7 +4850,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 120, + "rank": 122, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/534550?v=4", "bio": "Lead Software Engineer at @Netpositive ", @@ -4761,7 +4888,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 121, + "rank": 123, "contributions": 8, "avatar_url": "https://avatars.githubusercontent.com/u/129871973?v=4", "bio": null, @@ -4784,13 +4911,13 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 122, + "rank": 124, "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 ", + "bio": "Solution maker. \r\n18 years of experience in the Tech industry and expertise in the TypeScript/React ecosystem.\r\nMaker of @alistigo ", "name": "Mikaël Labrut", "location": "Amsterdam", - "company": "@HqOapp ", + "company": null, "blog": "" }, { @@ -4812,7 +4939,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 123, + "rank": 125, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/57361575?v=4", "bio": null, @@ -4835,7 +4962,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 124, + "rank": 126, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/10145362?v=4", "bio": null, @@ -4863,10 +4990,10 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 125, + "rank": 127, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/1502711?v=4", - "bio": "PHP developer", + "bio": "PHP/C++ developer", "name": "Martin Chudoba", "location": "Hradec Králové", "company": null, @@ -4891,7 +5018,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 126, + "rank": 128, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/19672303?v=4", "bio": "PHP/Symfony enthusiast. Backend Engineer. CTF player.", @@ -4909,7 +5036,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 127, + "rank": 129, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/393346?v=4", "bio": "CTO @ benerail", @@ -4918,6 +5045,62 @@ "company": "Bas.Peete.rs", "blog": "https://bas.peete.rs" }, + { + "login": "bkosun", + "repos": [ + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 5, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 130, + "contributions": 7, + "avatar_url": "https://avatars.githubusercontent.com/u/16259603?v=4", + "bio": null, + "name": "Borislav Kosun", + "location": "Ukraine", + "company": null, + "blog": "" + }, + { + "login": "cay89", + "repos": [ + { + "repo": "laravel", + "contributions": 3, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 131, + "contributions": 7, + "avatar_url": "https://avatars.githubusercontent.com/u/3186515?v=4", + "bio": null, + "name": null, + "location": null, + "company": null, + "blog": "" + }, { "login": "cedricziel", "repos": [ @@ -4937,7 +5120,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 128, + "rank": 132, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/418970?v=4", "bio": "I solve more problems than I create.", @@ -4975,7 +5158,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 129, + "rank": 133, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/38990335?v=4", "bio": null, @@ -4998,7 +5181,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 130, + "rank": 134, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/1506493?v=4", "bio": "Developer. @symfony Core Team. @doctrine Core Team. Likes working with code that has aged like a good whisky.", @@ -5031,7 +5214,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 131, + "rank": 135, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/33807590?v=4", "bio": null, @@ -5044,14 +5227,14 @@ "login": "jfthuillier", "repos": [ { - "repo": "website", + "repo": "api-doc-parser", "contributions": 1, - "url": "https://github.com/api-platform/website" + "url": "https://github.com/api-platform/api-doc-parser" }, { - "repo": "api-doc-parser", + "repo": "website", "contributions": 1, - "url": "https://github.com/api-platform/api-doc-parser" + "url": "https://github.com/api-platform/website" }, { "repo": "admin", @@ -5059,7 +5242,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 132, + "rank": 136, "contributions": 7, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/39944063?v=4", @@ -5088,7 +5271,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 133, + "rank": 137, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/6215162?v=4", "bio": null, @@ -5097,6 +5280,44 @@ "company": null, "blog": "" }, + { + "login": "natacha-h", + "repos": [ + { + "repo": "website", + "contributions": 3, + "url": "https://github.com/api-platform/website" + }, + { + "repo": "metadata", + "contributions": 1, + "url": "https://github.com/api-platform/metadata" + }, + { + "repo": "ramsey-uuid", + "contributions": 1, + "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" + } + ], + "rank": 138, + "contributions": 7, + "avatar_url": "https://avatars.githubusercontent.com/u/46324298?v=4", + "bio": null, + "name": null, + "location": "Paris", + "company": null, + "blog": "" + }, { "login": "nitneuk", "repos": [ @@ -5121,7 +5342,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 134, + "rank": 139, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/52654545?v=4", "bio": "Cooperator at @coopTilleuls / \r\nPHP Symfony developer / Kubernetes lover ", @@ -5139,7 +5360,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 135, + "rank": 140, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/2211145?v=4", "bio": "#php #reactjs developer @Elao. #Lyon\r\n\r\nFormer #Symfony core team member.", @@ -5167,7 +5388,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 136, + "rank": 141, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/1975857?v=4", "bio": null, @@ -5195,7 +5416,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 137, + "rank": 142, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/956297?v=4", "bio": null, @@ -5205,50 +5426,12 @@ "blog": "" }, { - "login": "rvanlaak", + "login": "sh41", "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", + "repo": "create-client", "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": [ - { - "repo": "graphql", - "contributions": 1, - "url": "https://github.com/api-platform/graphql" - }, - { - "repo": "serializer", - "contributions": 1, - "url": "https://github.com/api-platform/serializer" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/create-client" }, { "repo": "docs", @@ -5256,13 +5439,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 139, + "rank": 143, "contributions": 7, - "avatar_url": "https://avatars.githubusercontent.com/u/619585?v=4", - "bio": "open source enthusiast, mostly with Symfony. ", - "name": "Tac Tacelosky", - "location": "Sperryville, VA", - "company": "Survos", + "avatar_url": "https://avatars.githubusercontent.com/u/6237786?v=4", + "bio": null, + "name": "Steve Hall", + "location": "UK", + "company": null, "blog": "" }, { @@ -5284,7 +5467,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 140, + "rank": 144, "contributions": 7, "avatar_url": "https://avatars.githubusercontent.com/u/3897363?v=4", "bio": "PHP & Symfony dev, Sport-Finder Founder", @@ -5312,7 +5495,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 141, + "rank": 145, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/34127121?v=4", "bio": null, @@ -5321,6 +5504,29 @@ "company": "TQGG", "blog": "" }, + { + "login": "Cafeine42", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 5, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 146, + "contributions": 6, + "avatar_url": "https://avatars.githubusercontent.com/u/8327745?v=4", + "bio": null, + "name": "Thibaut Cholley", + "location": null, + "company": null, + "blog": "" + }, { "login": "ERuban", "repos": [ @@ -5340,7 +5546,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 142, + "rank": 147, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/13186130?v=4", "bio": null, @@ -5363,7 +5569,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 143, + "rank": 148, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/6140884?v=4", "bio": null, @@ -5373,27 +5579,22 @@ "blog": "" }, { - "login": "Renrhaf", + "login": "LaurentHuzard", "repos": [ { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" - }, - { - "repo": "api-platform", + "repo": "laravel", "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/laravel" }, { - "repo": "demo", + "repo": "serializer", "contributions": 1, - "url": "https://github.com/api-platform/demo" + "url": "https://github.com/api-platform/serializer" }, { - "repo": "elasticsearch", - "contributions": 1, - "url": "https://github.com/api-platform/elasticsearch" + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -5401,22 +5602,22 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 144, + "rank": 149, "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", - "name": "Quentin Fahrner", - "location": "Strasbourg, France", - "company": "SaaS Production", - "blog": "https://renrhaf.fr" + "avatar_url": "https://avatars.githubusercontent.com/u/26943296?v=4", + "bio": null, + "name": "Laurent Huzard", + "location": null, + "company": null, + "blog": "" }, { "login": "StrikerRUS", "repos": [ { - "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" }, { "repo": "demo", @@ -5424,12 +5625,12 @@ "url": "https://github.com/api-platform/demo" }, { - "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" } ], - "rank": 145, + "rank": 150, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/25141164?v=4", "bio": null, @@ -5462,7 +5663,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 146, + "rank": 151, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/11313131?v=4", "bio": "PHP / Symfony developer", @@ -5471,6 +5672,34 @@ "company": "@Extendas ", "blog": "" }, + { + "login": "abderrahimghazali", + "repos": [ + { + "repo": "laravel", + "contributions": 2, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 152, + "contributions": 6, + "avatar_url": "https://avatars.githubusercontent.com/u/12643883?v=4", + "bio": "Think bad. Do good.", + "name": "Abderrahim GHAZALI ", + "location": "Paris, France", + "company": "@Dropteam", + "blog": "https://abderrahimghazali.github.io/" + }, { "login": "alexisjanvier", "repos": [ @@ -5485,7 +5714,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 147, + "rank": 153, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/547706?v=4", "bio": "Salarié associé chez @incaya depuis 2022.", @@ -5513,14 +5742,14 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 148, + "rank": 154, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/29315886?v=4", - "bio": "39AC CCA4 FD30 0D04 C840 6EB3 B00E 0A46 B3F1 C157", + "bio": "creating solutions for nonexistent problems.\r\n\r\n39AC CCA4 FD30 0D04 C840 6EB3 B00E 0A46 B3F1 C157", "name": "Seifeddine Gmati", "location": "Tunisia", "company": "@Carthage-Software", - "blog": "" + "blog": "https://carthage.software" }, { "login": "brettins", @@ -5531,14 +5760,37 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 149, + "rank": 155, + "contributions": 6, + "avatar_url": "https://avatars.githubusercontent.com/u/5176335?v=4", + "bio": null, + "name": "Brett Ludwig", + "location": "Edmonton", + "company": "Simple Connections", + "blog": "http://simpleconnections.ca" + }, + { + "login": "darkweak", + "repos": [ + { + "repo": "vulcain", + "contributions": 1, + "url": "https://github.com/dunglas/vulcain" + }, + { + "repo": "docs", + "contributions": 5, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 156, "contributions": 6, - "avatar_url": "https://avatars.githubusercontent.com/u/5176335?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/25440709?v=4", "bio": null, - "name": "Brett Ludwig", - "location": "Edmonton", - "company": "Simple Connections", - "blog": "http://simpleconnections.ca" + "name": null, + "location": null, + "company": null, + "blog": "" }, { "login": "iamluc", @@ -5549,7 +5801,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 150, + "rank": 157, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/1539731?v=4", "bio": null, @@ -5572,14 +5824,14 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 151, + "rank": 158, "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", + "bio": "Red team operator for @Orange-Cyberdefense \r\nCreator of @matro7sh", "name": "H Mike", "location": "Marseille", "company": "@Orange-Cyberdefense @Inshallhack @matro7sh", - "blog": "https://jenaye.fr/cv.pdf" + "blog": "" }, { "login": "jonag", @@ -5595,7 +5847,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 152, + "rank": 159, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/2146169?v=4", "bio": null, @@ -5623,7 +5875,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 153, + "rank": 160, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/1675033?v=4", "bio": "Fullstack web developer and DevOps", @@ -5646,14 +5898,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 154, + "rank": 161, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/345754?v=4", "bio": "PHP/Symfony dev, into frontend as well.", "name": "Stepan Anchugov", - "location": "Bekgrade", + "location": "Belgrade", "company": null, - "blog": "http://blog.kixlive.ru" + "blog": "" }, { "login": "mbrodala", @@ -5674,7 +5926,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 155, + "rank": 162, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/5037116?v=4", "bio": null, @@ -5683,44 +5935,6 @@ "company": "Pagemachine AG", "blog": "https://pagemachine.de/" }, - { - "login": "natacha-h", - "repos": [ - { - "repo": "website", - "contributions": 2, - "url": "https://github.com/api-platform/website" - }, - { - "repo": "metadata", - "contributions": 1, - "url": "https://github.com/api-platform/metadata" - }, - { - "repo": "ramsey-uuid", - "contributions": 1, - "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" - } - ], - "rank": 156, - "contributions": 6, - "avatar_url": "https://avatars.githubusercontent.com/u/46324298?v=4", - "bio": null, - "name": null, - "location": "Paris", - "company": null, - "blog": "" - }, { "login": "nicolas-grekas", "repos": [ @@ -5745,15 +5959,43 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 157, + "rank": 163, "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.", + "bio": "Submitting features and bug(fixes) @symfony, to make it always faster, easier to use and better designed, uncompromising.\r\n@ESPCI_Alumni @HECAlumni.", "name": "Nicolas Grekas", "location": "Paris, France", "company": "@SymfonyCorp", "blog": "" }, + { + "login": "tacman", + "repos": [ + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + }, + { + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "docs", + "contributions": 4, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 164, + "contributions": 6, + "avatar_url": "https://avatars.githubusercontent.com/u/619585?v=4", + "bio": "open source enthusiast, mostly with Symfony. ", + "name": "Tac Tacelosky", + "location": "Sperryville, VA", + "company": "Survos", + "blog": "" + }, { "login": "tienvx", "repos": [ @@ -5768,7 +6010,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 158, + "rank": 165, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/3327643?v=4", "bio": null, @@ -5801,7 +6043,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 159, + "rank": 166, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/121003?v=4", "bio": "Symfony docs lead, writer at SymfonyCasts, Symfony evangelist, husband of @Leannapelham and a dad!", @@ -5829,7 +6071,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 160, + "rank": 167, "contributions": 6, "avatar_url": "https://avatars.githubusercontent.com/u/1815039?v=4", "bio": null, @@ -5847,7 +6089,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 161, + "rank": 168, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/5689499?v=4", "bio": null, @@ -5875,7 +6117,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 162, + "rank": 169, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/59364973?v=4", "bio": null, @@ -5893,7 +6135,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 163, + "rank": 170, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/13480665?v=4", "bio": null, @@ -5921,7 +6163,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 164, + "rank": 171, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/25347588?v=4", "bio": "From criminology to web dev ! \r\n", @@ -5944,7 +6186,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 165, + "rank": 172, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/51380592?v=4", "bio": "Developer @coopTilleuls ", @@ -5972,7 +6214,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 166, + "rank": 173, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/5123888?v=4", "bio": null, @@ -6005,7 +6247,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 167, + "rank": 174, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/438308?v=4", "bio": "A lazy developer randomly typing code until it works 👨‍💻", @@ -6023,7 +6265,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 168, + "rank": 175, "contributions": 5, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/7949510?v=4", @@ -6047,7 +6289,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 169, + "rank": 176, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/9253091?v=4", "bio": null, @@ -6056,6 +6298,34 @@ "company": null, "blog": "http://www.antoinelamirault.com/" }, + { + "login": "amenophis", + "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": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 177, + "contributions": 5, + "avatar_url": "https://avatars.githubusercontent.com/u/2158235?v=4", + "bio": "Yousign is hiring: https://cooptation.hellotrusty.io/rsio0kcmu5\r\n", + "name": "Jérémy Leherpeur", + "location": "Caen, France", + "company": "@yousign", + "blog": "https://yousign.com/" + }, { "login": "arnedesmedt", "repos": [ @@ -6075,7 +6345,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 170, + "rank": 178, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/5807162?v=4", "bio": "PHP Developer @Combell / VueJS Hobbyist", @@ -6103,7 +6373,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 171, + "rank": 179, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/84887?v=4", "bio": null, @@ -6112,29 +6382,6 @@ "company": null, "blog": "http://jolicode.com" }, - { - "login": "bkosun", - "repos": [ - { - "repo": "graphql", - "contributions": 1, - "url": "https://github.com/api-platform/graphql" - }, - { - "repo": "core", - "contributions": 4, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 172, - "contributions": 5, - "avatar_url": "https://avatars.githubusercontent.com/u/16259603?v=4", - "bio": null, - "name": "Borislav Kosun", - "location": "Ukraine", - "company": null, - "blog": "" - }, { "login": "carlobeltrame", "repos": [ @@ -6149,7 +6396,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 173, + "rank": 180, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/7566995?v=4", "bio": null, @@ -6162,14 +6409,14 @@ "login": "clementtalleu", "repos": [ { - "repo": "website", - "contributions": 1, - "url": "https://github.com/api-platform/website" + "repo": "api-doc-parser", + "contributions": 2, + "url": "https://github.com/api-platform/api-doc-parser" }, { - "repo": "api-platform", + "repo": "website", "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/website" }, { "repo": "demo", @@ -6177,12 +6424,12 @@ "url": "https://github.com/api-platform/demo" }, { - "repo": "api-doc-parser", - "contributions": 2, - "url": "https://github.com/api-platform/api-doc-parser" + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" } ], - "rank": 174, + "rank": 181, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/11056924?v=4", "bio": "@coopTilleuls ", @@ -6191,24 +6438,6 @@ "company": "les-tilleuls.coop", "blog": "" }, - { - "login": "darkweak", - "repos": [ - { - "repo": "docs", - "contributions": 5, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 175, - "contributions": 5, - "avatar_url": "https://avatars.githubusercontent.com/u/25440709?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, { "login": "devel-pa", "repos": [ @@ -6218,7 +6447,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 176, + "rank": 182, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/2742270?v=4", "bio": null, @@ -6236,7 +6465,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 177, + "rank": 183, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/1483385?v=4", "bio": null, @@ -6246,22 +6475,17 @@ "blog": "" }, { - "login": "gharlan", + "login": "hotfix31", "repos": [ { - "repo": "create-client", - "contributions": 1, - "url": "https://github.com/api-platform/create-client" - }, - { - "repo": ".github", + "repo": "elasticsearch", "contributions": 1, - "url": "https://github.com/api-platform/.github" + "url": "https://github.com/api-platform/elasticsearch" }, { - "repo": "vulcain", - "contributions": 1, - "url": "https://github.com/dunglas/vulcain" + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" }, { "repo": "core", @@ -6269,14 +6493,14 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 178, + "rank": 184, "contributions": 5, - "avatar_url": "https://avatars.githubusercontent.com/u/330436?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1555884?v=4", "bio": null, - "name": "Gregor Harlan", - "location": "Frankfurt, Germany", - "company": "Yakamara Media GmbH & Co. KG", - "blog": "" + "name": "Frédéric Fayard-Le Barzic", + "location": "Toulouse", + "company": "ChapsVision", + "blog": "https://fayard-lebarzic.fr" }, { "login": "ilicmsreten", @@ -6287,7 +6511,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 179, + "rank": 185, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/16244381?v=4", "bio": null, @@ -6305,7 +6529,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 180, + "rank": 186, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/433926?v=4", "bio": "Enthusiastic software engineer", @@ -6313,27 +6537,27 @@ "location": "Lyon (69), France", "company": "@Activinnov", "blog": "https://jeremy.decool.me" - }, - { - "login": "jdreesen", - "repos": [ - { - "repo": "vulcain", - "contributions": 2, - "url": "https://github.com/dunglas/vulcain" - }, + }, + { + "login": "jdreesen", + "repos": [ { "repo": "mercure", "contributions": 1, "url": "https://github.com/dunglas/mercure" }, + { + "repo": "vulcain", + "contributions": 2, + "url": "https://github.com/dunglas/vulcain" + }, { "repo": "docs", "contributions": 2, "url": "https://github.com/api-platform/docs" } ], - "rank": 181, + "rank": 187, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/424602?v=4", "bio": "Most Valuable Pimconaut 2020", @@ -6366,14 +6590,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 182, + "rank": 188, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/472429?v=4", "bio": "LeadDev @symfony @api-platform", "name": "Desjardins Jérôme", "location": "Perpignan", - "company": "@Ornikar", - "blog": "" + "company": null, + "blog": "https://jewome62.eu" }, { "login": "jpdz8005", @@ -6389,7 +6613,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 183, + "rank": 189, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/189017101?v=4", "bio": null, @@ -6412,7 +6636,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 184, + "rank": 190, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/568769?v=4", "bio": "Full Stack Web Developer in ❤️ with the commons @larriereguichet \r\nand benevolent dictactor @Amabla", @@ -6440,7 +6664,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 185, + "rank": 191, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/4746261?v=4", "bio": "Tech Lead", @@ -6458,7 +6682,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 186, + "rank": 192, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/92269411?v=4", "bio": "Coming soon.", @@ -6486,7 +6710,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 187, + "rank": 193, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/36849548?v=4", "bio": null, @@ -6509,7 +6733,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 188, + "rank": 194, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/1244112?v=4", "bio": "CTO | Principal Software Architect | \r\n10+ years experience in Web development.\r\n", @@ -6527,7 +6751,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 189, + "rank": 195, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/1389984?v=4", "bio": null, @@ -6550,7 +6774,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 190, + "rank": 196, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/42591123?v=4", "bio": null, @@ -6573,7 +6797,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 191, + "rank": 197, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/1102197?v=4", "bio": null, @@ -6601,7 +6825,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 192, + "rank": 198, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/10944808?v=4", "bio": null, @@ -6634,7 +6858,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 193, + "rank": 199, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/80783376?v=4", "bio": null, @@ -6657,11 +6881,11 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 194, + "rank": 200, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/1218015?v=4", "bio": null, - "name": "Simon", + "name": "Simon Daigre", "location": "Nantes, France", "company": null, "blog": "https://simon.daig.re/" @@ -6670,14 +6894,14 @@ "login": "slim", "repos": [ { - "repo": "demo", + "repo": "api-doc-parser", "contributions": 1, - "url": "https://github.com/api-platform/demo" + "url": "https://github.com/api-platform/api-doc-parser" }, { - "repo": "api-doc-parser", + "repo": "demo", "contributions": 1, - "url": "https://github.com/api-platform/api-doc-parser" + "url": "https://github.com/api-platform/demo" }, { "repo": "admin", @@ -6690,7 +6914,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 195, + "rank": 201, "contributions": 5, "isCoreTeam": true, "avatar_url": "https://avatars.githubusercontent.com/u/1479?v=4", @@ -6714,7 +6938,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 196, + "rank": 202, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/7608580?v=4", "bio": "A PHP Developer", @@ -6742,7 +6966,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 197, + "rank": 203, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/517753?v=4", "bio": null, @@ -6765,7 +6989,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 198, + "rank": 204, "contributions": 5, "avatar_url": "https://avatars.githubusercontent.com/u/167557?v=4", "bio": null, @@ -6783,7 +7007,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 199, + "rank": 205, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/26602940?v=4", "bio": null, @@ -6795,23 +7019,23 @@ { "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, + "rank": 206, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/7104259?v=4", "bio": null, @@ -6820,6 +7044,29 @@ "company": null, "blog": "" }, + { + "login": "GeLoLabs", + "repos": [ + { + "repo": "elasticsearch", + "contributions": 1, + "url": "https://github.com/api-platform/elasticsearch" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 207, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/149005863?v=4", + "bio": null, + "name": null, + "location": null, + "company": null, + "blog": "" + }, { "login": "GlitchedAxiom", "repos": [ @@ -6839,7 +7086,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 201, + "rank": 208, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/8281157?v=4", "bio": null, @@ -6862,7 +7109,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 202, + "rank": 209, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1985514?v=4", "bio": "@doctrine MongoDB ODM maintainer, @symfony & @laravel enthusiast.", @@ -6871,6 +7118,75 @@ "company": null, "blog": "https://bazan.dev" }, + { + "login": "JakovKnezovicc", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 210, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/101651825?v=4", + "bio": null, + "name": "jknezovic", + "location": null, + "company": null, + "blog": "" + }, + { + "login": "Jellyfrog", + "repos": [ + { + "repo": "laravel", + "contributions": 2, + "url": "https://github.com/api-platform/laravel" + }, + { + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 211, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/759887?v=4", + "bio": null, + "name": null, + "location": null, + "company": null, + "blog": "" + }, + { + "login": "KevinMartinsDev", + "repos": [ + { + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 212, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/16019629?v=4", + "bio": null, + "name": "Kévin Martins", + "location": "Lyon, France", + "company": null, + "blog": "" + }, { "login": "Koenstell", "repos": [ @@ -6890,7 +7206,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 203, + "rank": 213, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/118996061?v=4", "bio": null, @@ -6913,7 +7229,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 204, + "rank": 214, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/32396605?v=4", "bio": null, @@ -6941,7 +7257,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 205, + "rank": 215, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/5764721?v=4", "bio": "Senior software engineer ✞ Do fairies have a tale?", @@ -6964,7 +7280,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 206, + "rank": 216, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/47384001?v=4", "bio": null, @@ -6987,7 +7303,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 207, + "rank": 217, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/915273?v=4", "bio": null, @@ -6996,34 +7312,6 @@ "company": "WEB AREA", "blog": "https://www.webarea.fr" }, - { - "login": "SinithH", - "repos": [ - { - "repo": "api-platform", - "contributions": 1, - "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": 208, - "contributions": 4, - "avatar_url": "https://avatars.githubusercontent.com/u/45849343?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, { "login": "Spomky", "repos": [ @@ -7043,7 +7331,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 209, + "rank": 218, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1091072?v=4", "bio": "@symfony Core Team", @@ -7061,7 +7349,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 210, + "rank": 219, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/87716741?v=4", "bio": null, @@ -7079,7 +7367,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 211, + "rank": 220, "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", @@ -7107,7 +7395,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 212, + "rank": 221, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/34744867?v=4", "bio": "Just here to enjoy coding 🎉 ⭐ ", @@ -7130,7 +7418,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 213, + "rank": 222, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1162230?v=4", "bio": null, @@ -7139,34 +7427,6 @@ "company": "@coopcycle ", "blog": "" }, - { - "login": "amenophis", - "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": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "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", - "name": "Jérémy Leherpeur", - "location": "Caen, France", - "company": "@yousign", - "blog": "https://yousign.com/" - }, { "login": "asrorbekh", "repos": [ @@ -7176,7 +7436,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 215, + "rank": 223, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/88960956?v=4", "bio": "⏳", @@ -7194,7 +7454,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 216, + "rank": 224, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/5159398?v=4", "bio": "Programmer by passion.", @@ -7212,7 +7472,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 217, + "rank": 225, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1631754?v=4", "bio": null, @@ -7240,7 +7500,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 218, + "rank": 226, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1099956?v=4", "bio": null, @@ -7258,7 +7518,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 219, + "rank": 227, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/272812?v=4", "bio": "Tech. lead @ Exotec", @@ -7281,7 +7541,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 220, + "rank": 228, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/13316080?v=4", "bio": null, @@ -7299,7 +7559,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 221, + "rank": 229, "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.", @@ -7327,7 +7587,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 222, + "rank": 230, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/9316891?v=4", "bio": null, @@ -7345,7 +7605,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 223, + "rank": 231, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/436605?v=4", "bio": "TypeScript", @@ -7368,7 +7628,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 224, + "rank": 232, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/17091381?v=4", "bio": "------------´´Hack the Planet``------------ |.|.|.|.|.|.Together for a better world.|.|.|.|.|.|", @@ -7396,7 +7656,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 225, + "rank": 233, "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.", @@ -7414,7 +7674,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 226, + "rank": 234, "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...", @@ -7437,7 +7697,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 227, + "rank": 235, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/2741880?v=4", "bio": "Awesome web-developer ;)", @@ -7446,6 +7706,29 @@ "company": null, "blog": "" }, + { + "login": "elfin-sbreuers", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + }, + { + "repo": "core", + "contributions": 3, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 236, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/15817824?v=4", + "bio": null, + "name": null, + "location": null, + "company": null, + "blog": "" + }, { "login": "emmanuelballery", "repos": [ @@ -7465,14 +7748,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 228, + "rank": 237, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1687685?v=4", - "bio": "CTO", + "bio": "Formé pour comprendre les humains, j'ai fini par passer ma vie à parler aux machines. Le destin a de l'humour.", "name": "Emmanuel BALLERY", "location": "France", "company": null, - "blog": "" + "blog": "https://x10-solutions.fr" }, { "login": "esserj", @@ -7493,7 +7776,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 229, + "rank": 238, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1032205?v=4", "bio": null, @@ -7516,7 +7799,7 @@ "url": "https://github.com/api-platform/api-pack" } ], - "rank": 230, + "rank": 239, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/47313?v=4", "bio": "Founder and project lead at Symfony\r\nCTO at Upsun", @@ -7539,7 +7822,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 231, + "rank": 240, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/23530626?v=4", "bio": "Cofounder @alpic-ai - all-in-one MCP hosting platform. All things serverless ❤️. AWS Community Builder", @@ -7549,25 +7832,48 @@ "blog": "" }, { - "login": "guillemfondin", + "login": "giosh94mhz", "repos": [ { - "repo": "api-platform", - "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "repo": "symfony", + "contributions": 2, + "url": "https://github.com/api-platform/symfony" }, + { + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 241, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/5219975?v=4", + "bio": null, + "name": "Giorgio Premi", + "location": "Lake Como, Italy", + "company": null, + "blog": "" + }, + { + "login": "guillemfondin", + "repos": [ { "repo": "create-client", "contributions": 1, "url": "https://github.com/api-platform/create-client" }, + { + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" + }, { "repo": "docs", "contributions": 2, "url": "https://github.com/api-platform/docs" } ], - "rank": 232, + "rank": 242, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/46321667?v=4", "bio": null, @@ -7590,7 +7896,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 233, + "rank": 243, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/6960531?v=4", "bio": null, @@ -7613,7 +7919,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 234, + "rank": 244, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/40628500?v=4", "bio": null, @@ -7641,14 +7947,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 235, + "rank": 245, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/254875?v=4", "bio": null, "name": "Peck", "location": "Washington, DC", "company": null, - "blog": "https://johnnypeck.com" + "blog": "https://johnnypeck.com/about" }, { "login": "kochen", @@ -7674,7 +7980,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 236, + "rank": 246, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/106042?v=4", "bio": null, @@ -7702,13 +8008,13 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 237, + "rank": 247, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/41073314?v=4", "bio": null, "name": null, "location": "Germany", - "company": null, + "company": "SensioLabs Deutschland", "blog": "" }, { @@ -7720,7 +8026,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 238, + "rank": 248, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/300279?v=4", "bio": null, @@ -7743,7 +8049,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 239, + "rank": 249, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/11943457?v=4", "bio": null, @@ -7766,7 +8072,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 240, + "rank": 250, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/4113819?v=4", "bio": null, @@ -7794,14 +8100,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 241, + "rank": 251, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/160332?v=4", "bio": null, "name": "Marc Weistroff", "location": "Spaceship Earth", - "company": null, - "blog": "http://www.harmonique.one" + "company": "Harmonique Studio", + "blog": "https://harmonique.one" }, { "login": "maxtorete", @@ -7817,7 +8123,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 242, + "rank": 252, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1867132?v=4", "bio": null, @@ -7840,7 +8146,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 243, + "rank": 253, "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.", @@ -7863,7 +8169,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 244, + "rank": 254, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1247388?v=4", "bio": "Data Engineer & IA Developer 📊", @@ -7881,7 +8187,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 245, + "rank": 255, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1287855?v=4", "bio": null, @@ -7904,7 +8210,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 246, + "rank": 256, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1794571?v=4", "bio": "Software Engineer (PHP, Symfony, API Platform)", @@ -7932,7 +8238,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 247, + "rank": 257, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/11806113?v=4", "bio": "Back-end developer @coopTilleuls ", @@ -7950,7 +8256,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 248, + "rank": 258, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/11422029?v=4", "bio": "Lead Backend Engineer.\r\nPHP (Laravel / Symfony) | Node.js", @@ -7973,7 +8279,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 249, + "rank": 259, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/10513720?v=4", "bio": null, @@ -7991,7 +8297,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 250, + "rank": 260, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/2885914?v=4", "bio": null, @@ -8014,7 +8320,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 251, + "rank": 261, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/1698357?v=4", "bio": null, @@ -8037,7 +8343,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 252, + "rank": 262, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/166079?v=4", "bio": null, @@ -8070,7 +8376,7 @@ "url": "https://github.com/api-platform/admin-pack" } ], - "rank": 253, + "rank": 263, "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", @@ -8093,13 +8399,31 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 254, + "rank": 264, "contributions": 4, "avatar_url": "https://avatars.githubusercontent.com/u/25704924?v=4", "bio": null, "name": "Vyacheslav Startsev", "location": "Russia, Novosibirsk ❆", - "company": "@ozon", + "company": null, + "blog": "" + }, + { + "login": "wuchen90", + "repos": [ + { + "repo": "core", + "contributions": 4, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 265, + "contributions": 4, + "avatar_url": "https://avatars.githubusercontent.com/u/8489333?v=4", + "bio": null, + "name": null, + "location": null, + "company": null, "blog": "" }, { @@ -8116,7 +8440,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 255, + "rank": 266, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/48998273?v=4", "bio": "Computer science student - Lille FR", @@ -8134,7 +8458,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 256, + "rank": 267, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/14289961?v=4", "bio": "PHP developer. Backendtea on twitter", @@ -8162,7 +8486,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 257, + "rank": 268, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/787653?v=4", "bio": "Fullstack dev", @@ -8171,24 +8495,6 @@ "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": [ @@ -8198,7 +8504,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 259, + "rank": 269, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/957477?v=4", "bio": null, @@ -8216,7 +8522,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 260, + "rank": 271, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1322557?v=4", "bio": null, @@ -8234,7 +8540,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 261, + "rank": 272, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/62953579?v=4", "bio": null, @@ -8257,7 +8563,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 262, + "rank": 273, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/8696117?v=4", "bio": null, @@ -8275,7 +8581,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 263, + "rank": 274, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/5227741?v=4", "bio": null, @@ -8284,34 +8590,6 @@ "company": null, "blog": "" }, - { - "login": "Gwemox", - "repos": [ - { - "repo": "openapi", - "contributions": 1, - "url": "https://github.com/api-platform/openapi" - }, - { - "repo": "metadata", - "contributions": 1, - "url": "https://github.com/api-platform/metadata" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 264, - "contributions": 3, - "avatar_url": "https://avatars.githubusercontent.com/u/9432727?v=4", - "bio": null, - "name": "Thibault Buathier", - "location": "Lyon, France", - "company": "@mon-petit-placement ", - "blog": "https://thibault01.com/" - }, { "login": "IckleChris", "repos": [ @@ -8331,7 +8609,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 265, + "rank": 275, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/3933176?v=4", "bio": "I write code", @@ -8354,7 +8632,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 266, + "rank": 276, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/24977431?v=4", "bio": null, @@ -8377,7 +8655,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 267, + "rank": 277, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/995707?v=4", "bio": "Managing Director @sensiolabs-de ", @@ -8400,10 +8678,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 268, + "rank": 278, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/56270479?v=4", - "bio": "Full Stack developer, specialized in Symfony and React.", + "bio": "Software Engineer | Data Engineer | Technical Leader", "name": "Picasso Houessou", "location": "62137 Coulogne, France", "company": null, @@ -8418,7 +8696,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 269, + "rank": 279, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/95493765?v=4", "bio": null, @@ -8428,53 +8706,48 @@ "blog": "" }, { - "login": "Taluu", + "login": "SinithH", "repos": [ { - "repo": "serializer", + "repo": "api-platform", "contributions": 1, - "url": "https://github.com/api-platform/serializer" + "url": "https://github.com/api-platform/api-platform" }, { - "repo": "core", + "repo": "docs", "contributions": 2, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/docs" } ], - "rank": 270, + "rank": 280, "contributions": 3, - "avatar_url": "https://avatars.githubusercontent.com/u/239685?v=4", - "bio": "Symfony enthusiast. Maintainer of Behapi, Totem.", - "name": "Baptiste Clavié", - "location": "Paris, France", + "avatar_url": "https://avatars.githubusercontent.com/u/45849343?v=4", + "bio": null, + "name": null, + "location": null, "company": null, "blog": "" }, { - "login": "Te4g", + "login": "Taluu", "repos": [ { - "repo": "openapi", - "contributions": 1, - "url": "https://github.com/api-platform/openapi" - }, - { - "repo": "mercure", + "repo": "serializer", "contributions": 1, - "url": "https://github.com/dunglas/mercure" + "url": "https://github.com/api-platform/serializer" }, { "repo": "core", - "contributions": 1, + "contributions": 2, "url": "https://github.com/api-platform/core" } ], - "rank": 271, + "rank": 281, "contributions": 3, - "avatar_url": "https://avatars.githubusercontent.com/u/47118498?v=4", - "bio": "Backend developer", - "name": "Gaetan Rouseyrol", - "location": "Lyon", + "avatar_url": "https://avatars.githubusercontent.com/u/239685?v=4", + "bio": "Symfony enthusiast. Maintainer of Behapi, Totem.", + "name": "Baptiste Clavié", + "location": "Paris, France", "company": null, "blog": "" }, @@ -8487,7 +8760,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 272, + "rank": 282, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/5579551?v=4", "bio": "PHP|Symfony fan", @@ -8505,7 +8778,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 273, + "rank": 283, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/78273358?v=4", "bio": null, @@ -8528,7 +8801,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 274, + "rank": 284, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/7464920?v=4", "bio": "Solution Architect, System Analyst, and Backend Developer\r\n", @@ -8556,7 +8829,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 275, + "rank": 285, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/17785401?v=4", "bio": null, @@ -8574,7 +8847,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 276, + "rank": 286, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/5212567?v=4", "bio": null, @@ -8592,7 +8865,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 277, + "rank": 287, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/2576509?v=4", "bio": null, @@ -8615,7 +8888,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 278, + "rank": 288, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/3639054?v=4", "bio": null, @@ -8638,7 +8911,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 279, + "rank": 289, "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.", @@ -8656,7 +8929,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 280, + "rank": 290, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/40235381?v=4", "bio": null, @@ -8679,7 +8952,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 281, + "rank": 291, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/29941647?v=4", "bio": null, @@ -8697,7 +8970,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 282, + "rank": 292, "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", @@ -8715,7 +8988,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 283, + "rank": 293, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/20707343?v=4", "bio": null, @@ -8738,7 +9011,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 284, + "rank": 294, "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.", @@ -8761,7 +9034,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 285, + "rank": 295, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/89267?v=4", "bio": "Open sourcerer", @@ -8779,7 +9052,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 286, + "rank": 296, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/656393?v=4", "bio": null, @@ -8788,34 +9061,6 @@ "company": "Laspra Soft", "blog": "http://www.facebook.com/maxim.pustynnikov" }, - { - "login": "develth", - "repos": [ - { - "repo": "metadata", - "contributions": 1, - "url": "https://github.com/api-platform/metadata" - }, - { - "repo": "graphql", - "contributions": 1, - "url": "https://github.com/api-platform/graphql" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 287, - "contributions": 3, - "avatar_url": "https://avatars.githubusercontent.com/u/3374563?v=4", - "bio": null, - "name": "Thomas Helmrich", - "location": "Bamberg / Germany", - "company": "@gigabit-gmbh", - "blog": "https://www.gigabit.de" - }, { "login": "dgoosens", "repos": [ @@ -8835,7 +9080,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 288, + "rank": 297, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1250047?v=4", "bio": null, @@ -8858,7 +9103,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 289, + "rank": 298, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/833667?v=4", "bio": null, @@ -8881,10 +9126,10 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 290, + "rank": 299, "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.", + "bio": "Developer, creator of Geblang, ❤ everything PHP, Python and all things web.", "name": null, "location": null, "company": null, @@ -8899,7 +9144,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 291, + "rank": 300, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/7835928?v=4", "bio": null, @@ -8917,7 +9162,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 292, + "rank": 301, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/10513304?v=4", "bio": null, @@ -8945,7 +9190,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 293, + "rank": 302, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/8403502?v=4", "bio": null, @@ -8968,7 +9213,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 294, + "rank": 303, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/9694162?v=4", "bio": null, @@ -8991,7 +9236,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 295, + "rank": 304, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/837462?v=4", "bio": null, @@ -9014,7 +9259,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 296, + "rank": 305, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1810304?v=4", "bio": "Subscribe to my youtube channel : https://www.youtube.com/@leflug", @@ -9037,7 +9282,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 297, + "rank": 306, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/851486?v=4", "bio": null, @@ -9055,7 +9300,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 298, + "rank": 307, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1327334?v=4", "bio": "Full Stack Developer", @@ -9065,13 +9310,31 @@ "blog": "" }, { - "login": "helios1101", + "login": "guillaumedelre", "repos": [ { - "repo": "website", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/api-platform/website" + "url": "https://github.com/api-platform/symfony" }, + { + "repo": "core", + "contributions": 2, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 308, + "contributions": 3, + "avatar_url": "https://avatars.githubusercontent.com/u/2004182?v=4", + "bio": null, + "name": "Guillaume Delré", + "location": "France", + "company": null, + "blog": "https://guillaumedelre.github.io" + }, + { + "login": "helios1101", + "repos": [ { "repo": "api-doc-parser", "contributions": 1, @@ -9081,9 +9344,14 @@ "repo": "create-client", "contributions": 1, "url": "https://github.com/api-platform/create-client" + }, + { + "repo": "website", + "contributions": 1, + "url": "https://github.com/api-platform/website" } ], - "rank": 299, + "rank": 309, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/26597930?v=4", "bio": "i Failed The Turing Test !\r\n", @@ -9111,13 +9379,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 300, + "rank": 310, "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", "name": "Hugo van Kemenade", "location": "Helsinki, Finland", - "company": "@sovereigntech", + "company": null, "blog": "https://hugovk.dev" }, { @@ -9139,13 +9407,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 301, + "rank": 311, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/9079379?v=4", "bio": null, "name": "JannesD", "location": "Hasselt, Belgium", - "company": "HappIT", + "company": "@HappIT ", "blog": "https://jannes.io" }, { @@ -9157,7 +9425,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 302, + "rank": 312, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/7811277?v=4", "bio": null, @@ -9185,7 +9453,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 303, + "rank": 313, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/12426580?v=4", "bio": null, @@ -9203,7 +9471,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 304, + "rank": 314, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/616999?v=4", "bio": "PHP consumer", @@ -9221,7 +9489,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 305, + "rank": 315, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/10072889?v=4", "bio": null, @@ -9239,7 +9507,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 306, + "rank": 316, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1217483?v=4", "bio": null, @@ -9248,6 +9516,24 @@ "company": "National Geographic Institute of France", "blog": "" }, + { + "login": "lacatoire", + "repos": [ + { + "repo": "docs", + "contributions": 3, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 317, + "contributions": 3, + "avatar_url": "https://avatars.githubusercontent.com/u/20201470?v=4", + "bio": "Expert Symfony · PHP team member · Founder @ Efficience IT", + "name": "Louis-Arnaud", + "location": "Lille", + "company": "Efficience IT", + "blog": "https://www.itefficience.com" + }, { "login": "lobodol", "repos": [ @@ -9257,7 +9543,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 307, + "rank": 318, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/7249581?v=4", "bio": null, @@ -9280,7 +9566,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 308, + "rank": 319, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/93604120?v=4", "bio": "Developer @coopTilleuls ", @@ -9298,7 +9584,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 309, + "rank": 320, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/25065217?v=4", "bio": null, @@ -9321,7 +9607,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 310, + "rank": 321, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1706470?v=4", "bio": null, @@ -9344,7 +9630,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 311, + "rank": 322, "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", @@ -9362,7 +9648,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 312, + "rank": 323, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/37533818?v=4", "bio": "Game Developer", @@ -9380,13 +9666,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 313, + "rank": 324, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/33012425?v=4", "bio": null, - "name": null, - "location": "Mountain View, CA", - "company": "Cruise LLC", + "name": "Michael Zhou", + "location": "Sunnyvale, CA", + "company": "Samsung Semiconductor, Inc.", "blog": "" }, { @@ -9403,7 +9689,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 314, + "rank": 325, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/17760158?v=4", "bio": null, @@ -9426,7 +9712,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 315, + "rank": 326, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/64469669?v=4", "bio": null, @@ -9449,7 +9735,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 316, + "rank": 327, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1037526?v=4", "bio": null, @@ -9477,7 +9763,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 317, + "rank": 328, "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 ", @@ -9495,10 +9781,10 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 318, + "rank": 329, "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", + "bio": "Hello! I'm Paul-Joseph, a dedicated backend developer who has honed my skills at LesTilleuls.coop. I specialize in Symfony and API Platform development.", "name": "Paul-joseph Krogulec", "location": null, "company": null, @@ -9513,7 +9799,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 319, + "rank": 330, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/9021747?v=4", "bio": "Hacker's thought.\r\nDon't know, but want to do.", @@ -9536,7 +9822,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 320, + "rank": 331, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1607439?v=4", "bio": null, @@ -9559,7 +9845,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 321, + "rank": 332, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/3513348?v=4", "bio": null, @@ -9582,7 +9868,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 322, + "rank": 333, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/22394917?v=4", "bio": null, @@ -9605,7 +9891,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 323, + "rank": 334, "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", @@ -9628,7 +9914,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 324, + "rank": 335, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/2021641?v=4", "bio": "Building stuff at @jolicode ", @@ -9651,7 +9937,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 325, + "rank": 336, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/585263?v=4", "bio": "php, go & docker enjoyer", @@ -9669,7 +9955,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 326, + "rank": 337, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/53424699?v=4", "bio": null, @@ -9687,7 +9973,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 327, + "rank": 338, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/601833?v=4", "bio": null, @@ -9705,17 +9991,17 @@ "url": "https://github.com/api-platform/website" }, { - "repo": "api-platform", + "repo": "admin", "contributions": 1, - "url": "https://github.com/api-platform/api-platform" + "url": "https://github.com/api-platform/admin" }, { - "repo": "admin", + "repo": "api-platform", "contributions": 1, - "url": "https://github.com/api-platform/admin" + "url": "https://github.com/api-platform/api-platform" } ], - "rank": 328, + "rank": 339, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/43902034?v=4", "bio": "Full Stack Developer | .NET Core | Azure | React", @@ -9724,29 +10010,6 @@ "company": null, "blog": "https://dev.to/sumitkharche" }, - { - "login": "superhaggis", - "repos": [ - { - "repo": "mercure", - "contributions": 2, - "url": "https://github.com/dunglas/mercure" - }, - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 329, - "contributions": 3, - "avatar_url": "https://avatars.githubusercontent.com/u/314841?v=4", - "bio": null, - "name": "Nick Winfield", - "location": null, - "company": null, - "blog": "" - }, { "login": "vitorluis", "repos": [ @@ -9756,7 +10019,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 330, + "rank": 340, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/1554800?v=4", "bio": null, @@ -9779,7 +10042,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 331, + "rank": 341, "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", @@ -9802,7 +10065,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 332, + "rank": 342, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/4489490?v=4", "bio": null, @@ -9820,7 +10083,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 333, + "rank": 343, "contributions": 3, "avatar_url": "https://avatars.githubusercontent.com/u/8469540?v=4", "bio": "Product @OptioIncentives ", @@ -9833,17 +10096,17 @@ "login": "7-zete-7", "repos": [ { - "repo": "vulcain", + "repo": "mercure", "contributions": 1, - "url": "https://github.com/dunglas/vulcain" + "url": "https://github.com/dunglas/mercure" }, { - "repo": "mercure", + "repo": "vulcain", "contributions": 1, - "url": "https://github.com/dunglas/mercure" + "url": "https://github.com/dunglas/vulcain" } ], - "rank": 334, + "rank": 344, "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.", @@ -9861,7 +10124,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 335, + "rank": 345, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1136402?v=4", "bio": null, @@ -9884,7 +10147,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 336, + "rank": 346, "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!", @@ -9902,7 +10165,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 337, + "rank": 347, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2535878?v=4", "bio": "CTO", @@ -9920,7 +10183,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 338, + "rank": 348, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/44655055?v=4", "bio": "Software Engineer", @@ -9943,7 +10206,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 339, + "rank": 349, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1506818?v=4", "bio": null, @@ -9966,14 +10229,37 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 340, + "rank": 350, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/12160269?v=4", + "bio": null, + "name": "Bart Heyrman", + "location": "Ellezelles, Belgium", + "company": "ITEA solutions", + "blog": "https://iteasolutions.be" + }, + { + "login": "BySplashGm", + "repos": [ + { + "repo": "demo", + "contributions": 1, + "url": "https://github.com/api-platform/demo" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 351, "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/12160269?v=4", - "bio": null, - "name": "Bart Heyrman", - "location": "Ellezelles, Belgium", - "company": "ITEA solutions", - "blog": "https://iteasolutions.be" + "avatar_url": "https://avatars.githubusercontent.com/u/64276067?v=4", + "bio": "3rd year CS student - MIAGE\r\n| my pfp is a clone not a stormtrooper btw", + "name": "Maxime Valin", + "location": "France", + "company": "@coopTilleuls", + "blog": "https://maximeval.in" }, { "login": "Byidi", @@ -9984,7 +10270,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 341, + "rank": 352, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8182848?v=4", "bio": null, @@ -10002,7 +10288,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 342, + "rank": 353, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/16717695?v=4", "bio": "\r\n 28 | Webdeveloper\r\n", @@ -10020,7 +10306,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 343, + "rank": 354, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/36374606?v=4", "bio": null, @@ -10043,7 +10329,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 344, + "rank": 355, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/42603404?v=4", "bio": null, @@ -10061,7 +10347,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 345, + "rank": 356, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8703922?v=4", "bio": null, @@ -10079,7 +10365,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 346, + "rank": 357, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/13310075?v=4", "bio": null, @@ -10097,7 +10383,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 347, + "rank": 358, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/977278?v=4", "bio": null, @@ -10120,7 +10406,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 348, + "rank": 359, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1122363?v=4", "bio": null, @@ -10138,7 +10424,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 349, + "rank": 360, "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.", @@ -10147,24 +10433,6 @@ "company": null, "blog": "" }, - { - "login": "GeLoLabs", - "repos": [ - { - "repo": "core", - "contributions": 2, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 350, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/149005863?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, { "login": "Geekimo", "repos": [ @@ -10179,7 +10447,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 351, + "rank": 361, "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.", @@ -10202,7 +10470,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 352, + "rank": 362, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/395137?v=4", "bio": null, @@ -10225,7 +10493,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 353, + "rank": 363, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/23635882?v=4", "bio": null, @@ -10243,7 +10511,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 354, + "rank": 364, "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!", @@ -10252,6 +10520,29 @@ "company": "PQShield", "blog": "https://gniot.fr" }, + { + "login": "Gwemox", + "repos": [ + { + "repo": "openapi", + "contributions": 1, + "url": "https://github.com/api-platform/openapi" + }, + { + "repo": "metadata", + "contributions": 1, + "url": "https://github.com/api-platform/metadata" + } + ], + "rank": 365, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/9432727?v=4", + "bio": null, + "name": "Thibault Buathier", + "location": "Lyon, France", + "company": "@mon-petit-placement ", + "blog": "https://thibault01.com/" + }, { "login": "HeahDude", "repos": [ @@ -10266,7 +10557,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 355, + "rank": 366, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/10107633?v=4", "bio": "Full dev alchemist", @@ -10284,13 +10575,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 356, + "rank": 367, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/17296678?v=4", - "bio": "Web developer, mainly back-end .\r\n\r\nATM @Winzana", + "bio": "Web developer, mainly back-end .\r\n\r\nATM @Imaios", "name": "Hugo (aka Xelodrin)", "location": "Montpellier", - "company": "Winzana", + "company": "Imaios", "blog": "" }, { @@ -10302,7 +10593,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 357, + "rank": 368, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8271283?v=4", "bio": null, @@ -10325,7 +10616,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 358, + "rank": 369, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/6114779?v=4", "bio": null, @@ -10343,7 +10634,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 359, + "rank": 370, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/944409?v=4", "bio": "Tweet @Korbeil_", @@ -10352,29 +10643,6 @@ "company": "@JoliCode", "blog": "https://baptiste.dev/" }, - { - "login": "LaurentHuzard", - "repos": [ - { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 360, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/26943296?v=4", - "bio": null, - "name": "Laurent Huzard", - "location": null, - "company": null, - "blog": "" - }, { "login": "LeoBenoist", "repos": [ @@ -10389,7 +10657,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 361, + "rank": 371, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2912614?v=4", "bio": null, @@ -10407,7 +10675,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 362, + "rank": 372, "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 😍.", @@ -10430,7 +10698,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 363, + "rank": 373, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1898254?v=4", "bio": null, @@ -10448,7 +10716,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 364, + "rank": 374, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/24290882?v=4", "bio": "Lead Software Engineer @ventureleap ", @@ -10471,7 +10739,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 365, + "rank": 375, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1069028?v=4", "bio": null, @@ -10494,7 +10762,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 366, + "rank": 376, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4658966?v=4", "bio": "Development, DevOps, Security. OpenSource contributor and Founder of Gametactic.", @@ -10517,7 +10785,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 367, + "rank": 377, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/53754824?v=4", "bio": null, @@ -10540,13 +10808,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 368, + "rank": 378, "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", "name": "Alex Rock", "location": "France", - "company": "@Orbitaleio / @Orbitale - @StudioAgate", + "company": "@Orbitale (founder) - @StudioAgate", "blog": "https://alex-rock.tech/en" }, { @@ -10558,12 +10826,12 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 369, + "rank": 379, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/823281?v=4", "bio": null, "name": "Lena Schneider", - "location": "Hamburg", + "location": "Germany", "company": null, "blog": "" }, @@ -10581,7 +10849,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 370, + "rank": 380, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8178740?v=4", "bio": null, @@ -10604,7 +10872,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 371, + "rank": 381, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/9056689?v=4", "bio": null, @@ -10613,29 +10881,6 @@ "company": null, "blog": "" }, - { - "login": "Stav88", - "repos": [ - { - "repo": "serializer", - "contributions": 1, - "url": "https://github.com/api-platform/serializer" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 372, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/18213148?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, { "login": "Steveb-p", "repos": [ @@ -10645,7 +10890,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 373, + "rank": 382, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3183926?v=4", "bio": null, @@ -10663,14 +10908,14 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 374, + "rank": 383, "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.", + "bio": "Full stack software engineer and lead with 25+ years of experience. Architect, problem-solver, innovator with a systemic and holistic approach.", "name": "Tamás Szigeti", "location": "Hungary", - "company": "@motleyhu", - "blog": "http://szigeti.one" + "company": "@motleyhand ", + "blog": "https://motleyhand.com" }, { "login": "Taminoful", @@ -10681,7 +10926,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 375, + "rank": 384, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/7423905?v=4", "bio": "Certified IT Specialist for Software Development", @@ -10704,7 +10949,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 376, + "rank": 385, "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", @@ -10714,53 +10959,53 @@ "blog": "https://tangoman.io" }, { - "login": "Veridis", + "login": "Te4g", "repos": [ { - "repo": "core", - "contributions": 2, - "url": "https://github.com/api-platform/core" + "repo": "openapi", + "contributions": 1, + "url": "https://github.com/api-platform/openapi" + }, + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" } ], - "rank": 377, + "rank": 386, "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/4425529?v=4", - "bio": null, - "name": "Alex Makdessi", - "location": null, + "avatar_url": "https://avatars.githubusercontent.com/u/47118498?v=4", + "bio": "Backend developer", + "name": "Gaetan Rouseyrol", + "location": "Lyon", "company": null, "blog": "" }, { - "login": "Wojdylak", + "login": "Veridis", "repos": [ - { - "repo": "metadata", - "contributions": 1, - "url": "https://github.com/api-platform/metadata" - }, { "repo": "core", - "contributions": 1, + "contributions": 2, "url": "https://github.com/api-platform/core" } ], - "rank": 378, + "rank": 387, "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/33687392?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/4425529?v=4", "bio": null, - "name": "Karol", + "name": "Alex Makdessi", "location": null, "company": null, "blog": "" }, { - "login": "Zippovich2", + "login": "Wojdylak", "repos": [ { - "repo": "graphql", + "repo": "metadata", "contributions": 1, - "url": "https://github.com/api-platform/graphql" + "url": "https://github.com/api-platform/metadata" }, { "repo": "core", @@ -10768,11 +11013,11 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 379, + "rank": 388, "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/26221873?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/33687392?v=4", "bio": null, - "name": "Skoropadskyi Roman", + "name": "Karol Wojdyła", "location": null, "company": null, "blog": "" @@ -10791,7 +11036,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 380, + "rank": 389, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/27766961?v=4", "bio": null, @@ -10809,7 +11054,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 381, + "rank": 390, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/49635295?v=4", "bio": "IT student at Polytech Paris-Saclay engineering school", @@ -10832,7 +11077,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 382, + "rank": 391, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1753742?v=4", "bio": null, @@ -10855,7 +11100,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 383, + "rank": 392, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/777096?v=4", "bio": null, @@ -10873,7 +11118,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 384, + "rank": 393, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/380026?v=4", "bio": "@rezozero and @roadiz co-founder and lead developer.", @@ -10894,38 +11139,15 @@ "repo": "core", "contributions": 1, "url": "https://github.com/api-platform/core" - } - ], - "rank": 385, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/118798868?v=4", - "bio": null, - "name": "Alexandre Nozière", - "location": "Auvergne", - "company": "OpenStudio", - "blog": "" - }, - { - "login": "artandor", - "repos": [ - { - "repo": "create-client", - "contributions": 1, - "url": "https://github.com/api-platform/create-client" - }, - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "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.", - "name": "Nicolas MYLLE", - "location": "Lille", - "company": null, + } + ], + "rank": 394, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/118798868?v=4", + "bio": null, + "name": "Alexandre Nozière", + "location": "Auvergne", + "company": "OpenStudio", "blog": "" }, { @@ -10937,7 +11159,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 387, + "rank": 395, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4458122?v=4", "bio": null, @@ -10955,7 +11177,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 388, + "rank": 396, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/389340?v=4", "bio": "Backend dev", @@ -10978,7 +11200,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 389, + "rank": 397, "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", @@ -10996,7 +11218,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 390, + "rank": 398, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1756031?v=4", "bio": null, @@ -11014,7 +11236,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 391, + "rank": 399, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/31113941?v=4", "bio": "Software Engineer | Researcher", @@ -11032,7 +11254,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 392, + "rank": 400, "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", @@ -11055,7 +11277,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 393, + "rank": 401, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/58093303?v=4", "bio": null, @@ -11073,13 +11295,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 394, + "rank": 402, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3290806?v=4", - "bio": "PHP Developer since 2006", - "name": "Catalin D.", + "bio": "🛡️ Founder @Spring-Prism | 🏦 Expert SWE @ Banca Transilvania | ☕ Java 21, Spring AI, LangChain4j. Building secure GenAI.", + "name": "Catalin Dordea", "location": "Romania", - "company": null, + "company": "Banca Transilvania", "blog": "" }, { @@ -11091,7 +11313,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 395, + "rank": 403, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/56223?v=4", "bio": null, @@ -11109,7 +11331,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 396, + "rank": 404, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/466021?v=4", "bio": null, @@ -11132,7 +11354,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 397, + "rank": 405, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3530471?v=4", "bio": null, @@ -11150,7 +11372,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 398, + "rank": 406, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/45861541?v=4", "bio": null, @@ -11173,7 +11395,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 399, + "rank": 407, "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", @@ -11191,15 +11413,38 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 400, + "rank": 408, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/150416?v=4", "bio": null, "name": "Marcus Stöhr", "location": "Cologne, Germany", - "company": "@brainbits ", + "company": "ATVANTAGE GmbH", "blog": "https://www.fmdb.net" }, + { + "login": "develth", + "repos": [ + { + "repo": "metadata", + "contributions": 1, + "url": "https://github.com/api-platform/metadata" + }, + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + } + ], + "rank": 409, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/3374563?v=4", + "bio": null, + "name": "Thomas Helmrich", + "location": "Bamberg / Germany", + "company": "@gigabit-gmbh", + "blog": "https://www.gigabit.de" + }, { "login": "djoos", "repos": [ @@ -11209,7 +11454,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 401, + "rank": 410, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/449510?v=4", "bio": null, @@ -11227,7 +11472,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 402, + "rank": 411, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/911705?v=4", "bio": null, @@ -11250,13 +11495,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 403, + "rank": 412, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/588564?v=4", "bio": null, "name": "Chernosov Denis", "location": "Samara", - "company": "http://www.i-sys.ru", + "company": "https://www.wildberries.ru/", "blog": "http://samara.hh.ru/resume/3aa1d454ff00bd9eaf0039ed1f736563726574" }, { @@ -11273,7 +11518,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 404, + "rank": 413, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/537253?v=4", "bio": "Senior Software Architect at Netvlies focused on quality and innovation", @@ -11291,7 +11536,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 405, + "rank": 414, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1876752?v=4", "bio": "DevSecOps engineer, IT secondary-school teacher, world traveller and botijos' collector", @@ -11314,7 +11559,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 406, + "rank": 415, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8693654?v=4", "bio": null, @@ -11337,7 +11582,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 407, + "rank": 416, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/5077020?v=4", "bio": "Full-Stack web developer (php, vuejs) & PhD student at Inria Nancy.", @@ -11360,7 +11605,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 408, + "rank": 417, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/88294294?v=4", "bio": null, @@ -11378,7 +11623,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 409, + "rank": 418, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2111701?v=4", "bio": null, @@ -11401,7 +11646,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 410, + "rank": 419, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2382015?v=4", "bio": null, @@ -11419,7 +11664,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 411, + "rank": 420, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3055667?v=4", "bio": null, @@ -11428,29 +11673,6 @@ "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": [ @@ -11460,7 +11682,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 413, + "rank": 421, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/70450336?v=4", "bio": null, @@ -11483,7 +11705,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 414, + "rank": 422, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/668604?v=4", "bio": null, @@ -11493,50 +11715,50 @@ "blog": "" }, { - "login": "herndlm", + "login": "gwini", "repos": [ { - "repo": "admin", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/api-platform/admin" + "url": "https://github.com/api-platform/symfony" }, { - "repo": "docs", + "repo": "core", "contributions": 1, - "url": "https://github.com/api-platform/docs" + "url": "https://github.com/api-platform/core" } ], - "rank": 415, + "rank": 423, "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/5738896?v=4", - "bio": "PHP, Linux, sour dough baking, 日本; Austrian living in Frankfurt", - "name": "Martin Herndl", - "location": "Frankfurt am Main, Germany", + "avatar_url": "https://avatars.githubusercontent.com/u/29913695?v=4", + "bio": null, + "name": "Jan Cimbál", + "location": "Czechia", "company": null, - "blog": "https://herndl.org" + "blog": "https://jancimbal.cz/" }, { - "login": "hotfix31", + "login": "herndlm", "repos": [ { - "repo": "symfony", + "repo": "admin", "contributions": 1, - "url": "https://github.com/api-platform/symfony" + "url": "https://github.com/api-platform/admin" }, { - "repo": "core", + "repo": "docs", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/docs" } ], - "rank": 416, + "rank": 424, "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" + "avatar_url": "https://avatars.githubusercontent.com/u/5738896?v=4", + "bio": "PHP, Linux, sour dough baking, 日本; Austrian living in Frankfurt", + "name": "Martin Herndl", + "location": "Frankfurt am Main, Germany", + "company": null, + "blog": "https://herndl.org" }, { "login": "idsplus-carlos", @@ -11552,7 +11774,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 417, + "rank": 425, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/44832925?v=4", "bio": null, @@ -11561,29 +11783,6 @@ "company": null, "blog": "" }, - { - "login": "ikamikaz3", - "repos": [ - { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 418, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/10922885?v=4", - "bio": null, - "name": "Thomas", - "location": "Paris", - "company": "Epitech", - "blog": "" - }, { "login": "jaapjan", "repos": [ @@ -11593,7 +11792,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 419, + "rank": 426, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2848293?v=4", "bio": "PHP, Drupal, Symfony, Ansible, Jenkins, New Relic, Blackfire, Javascript..", @@ -11611,7 +11810,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 420, + "rank": 427, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/25279263?v=4", "bio": "JavaScript Engineer | Open Sourcerer", @@ -11629,7 +11828,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 421, + "rank": 428, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/390431?v=4", "bio": "💻", @@ -11652,7 +11851,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 422, + "rank": 429, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1461106?v=4", "bio": null, @@ -11670,7 +11869,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 423, + "rank": 430, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/770797?v=4", "bio": null, @@ -11693,7 +11892,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 424, + "rank": 431, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/143341?v=4", "bio": null, @@ -11716,7 +11915,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 425, + "rank": 432, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/90466?v=4", "bio": null, @@ -11739,7 +11938,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 426, + "rank": 433, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/16880485?v=4", "bio": "Backend developer", @@ -11762,13 +11961,13 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 427, + "rank": 434, "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", + "company": null, "blog": "" }, { @@ -11780,7 +11979,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 428, + "rank": 435, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/60838818?v=4", "bio": null, @@ -11798,7 +11997,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 429, + "rank": 436, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4061805?v=4", "bio": null, @@ -11821,7 +12020,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 430, + "rank": 437, "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 ❤️", @@ -11844,7 +12043,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 431, + "rank": 438, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/84979570?v=4", "bio": null, @@ -11862,7 +12061,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 432, + "rank": 439, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1819360?v=4", "bio": null, @@ -11880,7 +12079,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 433, + "rank": 440, "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 ", @@ -11903,7 +12102,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 434, + "rank": 441, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8778012?v=4", "bio": "Just a human being. Develops things and improves business requirements.", @@ -11926,7 +12125,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 435, + "rank": 442, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8155563?v=4", "bio": null, @@ -11944,7 +12143,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 436, + "rank": 443, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/864114?v=4", "bio": null, @@ -11962,7 +12161,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 437, + "rank": 444, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/5382753?v=4", "bio": "Just another lazy web dev", @@ -11980,7 +12179,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 438, + "rank": 445, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4509454?v=4", "bio": null, @@ -11989,6 +12188,24 @@ "company": null, "blog": "http://kuznetsovsite.com" }, + { + "login": "l4nj1n9", + "repos": [ + { + "repo": "docs", + "contributions": 2, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 446, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/5610065?v=4", + "bio": null, + "name": "Lán jīng 藍鯨", + "location": null, + "company": null, + "blog": "https://l4nj1n9.github.io/" + }, { "login": "laurent-bientz", "repos": [ @@ -11998,7 +12215,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 439, + "rank": 447, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/6093572?v=4", "bio": "CTO at @w3r-one", @@ -12021,7 +12238,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 440, + "rank": 448, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/991986?v=4", "bio": "ᅟ", @@ -12039,14 +12256,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 441, + "rank": 449, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/7791256?v=4", - "bio": "Tech lead at Egerie.", + "bio": "Tech Lead & backend developer PHP - freelance", "name": "Jérémie", "location": "Bretagne", - "company": null, - "blog": "" + "company": "Astrolabe", + "blog": "https://loconox.dev" }, { "login": "lucasgranberg", @@ -12062,7 +12279,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 442, + "rank": 450, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1225253?v=4", "bio": null, @@ -12080,7 +12297,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 443, + "rank": 451, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/351039?v=4", "bio": null, @@ -12098,7 +12315,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 444, + "rank": 452, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/27778481?v=4", "bio": null, @@ -12116,7 +12333,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 445, + "rank": 453, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2435655?v=4", "bio": "PHP, Symfony, TDD, DDD", @@ -12139,7 +12356,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 446, + "rank": 454, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4181889?v=4", "bio": null, @@ -12157,7 +12374,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 447, + "rank": 455, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/22563689?v=4", "bio": null, @@ -12180,7 +12397,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 448, + "rank": 456, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4480075?v=4", "bio": null, @@ -12203,7 +12420,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 449, + "rank": 457, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/7423207?v=4", "bio": null, @@ -12226,7 +12443,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 450, + "rank": 458, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/14213930?v=4", "bio": null, @@ -12249,7 +12466,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 451, + "rank": 459, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/494845?v=4", "bio": "PHP, Symfony, React, a little golang, homebrewing", @@ -12272,7 +12489,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 452, + "rank": 460, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8223318?v=4", "bio": "ismailzai.com/keys/ssh.pub\r\nismailzai.com/keys/gpg.asc", @@ -12295,7 +12512,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 453, + "rank": 461, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/74459?v=4", "bio": null, @@ -12318,10 +12535,10 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 454, + "rank": 462, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/548536?v=4", - "bio": "Deputy CTO and techno lover", + "bio": "CTO and techno lover", "name": "Rémi Marseille", "location": "Paris, France", "company": "Ekino", @@ -12336,7 +12553,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 455, + "rank": 463, "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", @@ -12354,7 +12571,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 456, + "rank": 464, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/11576446?v=4", "bio": null, @@ -12372,7 +12589,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 457, + "rank": 465, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1620454?v=4", "bio": null, @@ -12390,7 +12607,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 458, + "rank": 466, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/15169250?v=4", "bio": null, @@ -12408,7 +12625,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 459, + "rank": 467, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/199838?v=4", "bio": null, @@ -12417,6 +12634,29 @@ "company": "OXEVA", "blog": "" }, + { + "login": "olinox14", + "repos": [ + { + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" + }, + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 468, + "contributions": 2, + "avatar_url": "https://avatars.githubusercontent.com/u/15560057?v=4", + "bio": null, + "name": "Olivier Massot", + "location": null, + "company": null, + "blog": "https://olivier-massot.ogene.fr" + }, { "login": "ollietb", "repos": [ @@ -12431,7 +12671,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 460, + "rank": 469, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/342090?v=4", "bio": null, @@ -12454,7 +12694,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 461, + "rank": 470, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/197604?v=4", "bio": null, @@ -12477,7 +12717,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 462, + "rank": 471, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/496233?v=4", "bio": null, @@ -12500,7 +12740,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 463, + "rank": 472, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/197154?v=4", "bio": null, @@ -12523,7 +12763,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 464, + "rank": 473, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1848817?v=4", "bio": null, @@ -12546,7 +12786,7 @@ "url": "https://github.com/api-platform/metadata" } ], - "rank": 465, + "rank": 474, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2717390?v=4", "bio": null, @@ -12569,7 +12809,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 466, + "rank": 475, "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.", @@ -12592,7 +12832,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 467, + "rank": 476, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1941578?v=4", "bio": null, @@ -12615,7 +12855,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 468, + "rank": 477, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4361764?v=4", "bio": null, @@ -12638,7 +12878,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 469, + "rank": 478, "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 🇫🇷", @@ -12656,14 +12896,14 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 470, + "rank": 479, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8060564?v=4", "bio": null, "name": "Quentin de Longraye", "location": "Paris, France", - "company": "@Aviv-public ", - "blog": "https://github.com/dldl" + "company": null, + "blog": "" }, { "login": "ralbear", @@ -12674,7 +12914,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 471, + "rank": 480, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/3120856?v=4", "bio": null, @@ -12697,7 +12937,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 472, + "rank": 481, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/9253113?v=4", "bio": null, @@ -12715,7 +12955,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 473, + "rank": 482, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/6103961?v=4", "bio": null, @@ -12738,7 +12978,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 474, + "rank": 483, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1212958?v=4", "bio": null, @@ -12756,7 +12996,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 475, + "rank": 484, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/14915052?v=4", "bio": null, @@ -12779,7 +13019,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 476, + "rank": 485, "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", @@ -12797,13 +13037,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 477, + "rank": 486, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/5249624?v=4", "bio": "I automate stuff", "name": "rogamoore", - "location": "Switzerland", - "company": "YMC AG, Kreuzlingen", + "location": null, + "company": null, "blog": "" }, { @@ -12815,7 +13055,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 478, + "rank": 487, "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", @@ -12833,7 +13073,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 479, + "rank": 488, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/43172716?v=4", "bio": "@google Ex DSC Lead | @microsoft Student Partner | @mozillian | \r\n", @@ -12856,7 +13096,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 480, + "rank": 489, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/712999?v=4", "bio": null, @@ -12874,7 +13114,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 481, + "rank": 490, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/4902384?v=4", "bio": null, @@ -12883,29 +13123,6 @@ "company": "La Fourchette", "blog": "" }, - { - "login": "sergiuionescu", - "repos": [ - { - "repo": "json-schema", - "contributions": 1, - "url": "https://github.com/api-platform/json-schema" - }, - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 482, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/1065939?v=4", - "bio": null, - "name": "Sergiu Ionescu", - "location": "Bucharest", - "company": null, - "blog": "" - }, { "login": "sidz", "repos": [ @@ -12920,7 +13137,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 483, + "rank": 491, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1302230?v=4", "bio": null, @@ -12938,7 +13155,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 484, + "rank": 492, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/327999?v=4", "bio": null, @@ -12956,7 +13173,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 485, + "rank": 493, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1806237?v=4", "bio": null, @@ -12974,7 +13191,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 486, + "rank": 494, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2756865?v=4", "bio": null, @@ -12992,7 +13209,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 487, + "rank": 495, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1180107?v=4", "bio": null, @@ -13015,10 +13232,10 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 488, + "rank": 496, "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.", + "bio": "@flow-php core developer. Head of DevEx at A-Cube. Formerly Engineer Manager at Aterian, CTO at Dimedic, Staff Engineer at TUI Musement.", "name": "Joseph Bielawski", "location": "Warsaw, Poland", "company": null, @@ -13033,7 +13250,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 489, + "rank": 497, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/206316?v=4", "bio": null, @@ -13043,22 +13260,22 @@ "blog": "" }, { - "login": "taophp", + "login": "superhaggis", "repos": [ { - "repo": "docs", + "repo": "mercure", "contributions": 2, - "url": "https://github.com/api-platform/docs" + "url": "https://github.com/dunglas/mercure" } ], - "rank": 490, + "rank": 498, "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!", - "name": "Stéphane Mourey", - "location": "France", - "company": "@PixyBlue ", - "blog": "https://pixyblue.com" + "avatar_url": "https://avatars.githubusercontent.com/u/314841?v=4", + "bio": null, + "name": "Nick Winfield", + "location": null, + "company": null, + "blog": "" }, { "login": "tbredillet", @@ -13069,7 +13286,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 491, + "rank": 499, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/8436532?v=4", "bio": null, @@ -13087,10 +13304,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 492, + "rank": 500, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/2990033?v=4", - "bio": null, + "bio": "Backend developer", "name": "Aurel Branzeanu", "location": "Chisinau, Moldova", "company": "PC-Link", @@ -13110,7 +13327,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 493, + "rank": 501, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1195165?v=4", "bio": null, @@ -13128,7 +13345,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 494, + "rank": 502, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/1040915?v=4", "bio": "Developer and music lover", @@ -13151,7 +13368,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 495, + "rank": 503, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/38932626?v=4", "bio": "Enjoy life.", @@ -13174,7 +13391,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 496, + "rank": 504, "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", @@ -13197,7 +13414,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 497, + "rank": 505, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/639376?v=4", "bio": null, @@ -13206,24 +13423,6 @@ "company": null, "blog": "" }, - { - "login": "wuchen90", - "repos": [ - { - "repo": "core", - "contributions": 2, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 498, - "contributions": 2, - "avatar_url": "https://avatars.githubusercontent.com/u/8489333?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, { "login": "xip-niekneuij", "repos": [ @@ -13233,7 +13432,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 499, + "rank": 506, "contributions": 2, "avatar_url": "https://avatars.githubusercontent.com/u/80959825?v=4", "bio": null, @@ -13251,7 +13450,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 500, + "rank": 507, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/44259105?v=4", "bio": "https://gitlab.com/121593\r\n", @@ -13269,7 +13468,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 501, + "rank": 508, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2325383?v=4", "bio": null, @@ -13287,7 +13486,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 502, + "rank": 509, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/15173990?v=4", "bio": null, @@ -13305,7 +13504,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 503, + "rank": 510, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2180032?v=4", "bio": null, @@ -13323,7 +13522,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 504, + "rank": 511, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/75614656?v=4", "bio": "Senior Software Engineer @sqli", @@ -13341,7 +13540,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 505, + "rank": 512, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8030342?v=4", "bio": "Head of Web Studies & Development @Sanden-Manufacturing-Europe ", @@ -13359,7 +13558,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 506, + "rank": 513, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7613997?v=4", "bio": null, @@ -13377,7 +13576,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 507, + "rank": 514, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5858108?v=4", "bio": "Problem solver. Fullstack WebDev.", @@ -13395,7 +13594,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 508, + "rank": 515, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/75487534?v=4", "bio": null, @@ -13413,7 +13612,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 509, + "rank": 516, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6648753?v=4", "bio": "Web Dev - Back End but sometimes I code weird things", @@ -13431,7 +13630,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 510, + "rank": 517, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10198926?v=4", "bio": "Web developer", @@ -13449,7 +13648,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 511, + "rank": 518, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/24383925?v=4", "bio": "Web Dev @eleven-labs 🚀", @@ -13467,7 +13666,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 512, + "rank": 519, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/15607661?v=4", "bio": " Back-End Developer\r\n& Symfony addict", @@ -13485,7 +13684,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 513, + "rank": 520, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/927944?v=4", "bio": null, @@ -13503,7 +13702,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 514, + "rank": 521, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/895123?v=4", "bio": "Developer ", @@ -13521,7 +13720,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 515, + "rank": 522, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10684574?v=4", "bio": null, @@ -13539,7 +13738,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 516, + "rank": 523, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1245656?v=4", "bio": null, @@ -13557,7 +13756,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 517, + "rank": 524, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/588205?v=4", "bio": "Software engineer who <3 to code.", @@ -13575,7 +13774,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 518, + "rank": 525, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/796026?v=4", "bio": null, @@ -13584,24 +13783,6 @@ "company": null, "blog": "http://www.vortexrevolutions.com" }, - { - "login": "BatsaxIV", - "repos": [ - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 519, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1379286?v=4", - "bio": null, - "name": "Jérémy Crapet", - "location": "Lille", - "company": null, - "blog": "" - }, { "login": "Bl00D4NGEL", "repos": [ @@ -13611,7 +13792,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 520, + "rank": 526, "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", @@ -13629,7 +13810,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 521, + "rank": 527, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5942653?v=4", "bio": null, @@ -13647,7 +13828,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 522, + "rank": 528, "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 ", @@ -13665,32 +13846,14 @@ "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, + "rank": 529, "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" + "avatar_url": "https://avatars.githubusercontent.com/u/27001953?v=4", + "bio": null, + "name": "Ben", + "location": null, + "company": null, + "blog": "" }, { "login": "CarlSchwan", @@ -13701,7 +13864,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 525, + "rank": 530, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23653902?v=4", "bio": "Free software programmer. Contribute to Nextcloud during the day and to KDE during the night. KDE e.V. board member.", @@ -13719,7 +13882,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 526, + "rank": 531, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14248485?v=4", "bio": null, @@ -13737,7 +13900,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 527, + "rank": 532, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2522998?v=4", "bio": null, @@ -13755,7 +13918,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 528, + "rank": 533, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/735030?v=4", "bio": "Out of the box.", @@ -13773,13 +13936,13 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 529, + "rank": 534, "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": "@comradssolutions ", + "company": null, "blog": "" }, { @@ -13791,7 +13954,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 530, + "rank": 535, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/74913783?v=4", "bio": null, @@ -13809,7 +13972,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 531, + "rank": 536, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2771909?v=4", "bio": "Full Stack Webdeveloper @PRinguin", @@ -13827,7 +13990,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 532, + "rank": 537, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1662950?v=4", "bio": null, @@ -13845,7 +14008,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 533, + "rank": 538, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/32187719?v=4", "bio": "Web Developer", @@ -13863,7 +14026,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 534, + "rank": 539, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/60774219?v=4", "bio": null, @@ -13881,7 +14044,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 535, + "rank": 540, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2045722?v=4", "bio": null, @@ -13899,7 +14062,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 536, + "rank": 541, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/119461278?v=4", "bio": null, @@ -13917,7 +14080,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 537, + "rank": 542, "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", @@ -13935,7 +14098,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 538, + "rank": 543, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11960892?v=4", "bio": null, @@ -13953,7 +14116,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 539, + "rank": 544, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8595779?v=4", "bio": "Discord: dartcz", @@ -13962,6 +14125,24 @@ "company": "@Survival-Games ", "blog": "https://dartcz.dev" }, + { + "login": "DjordyKoert", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 545, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/33036133?v=4", + "bio": "Developer at @YourSurpriseCom \r\n\r\nMaintaining NelmioApiDocBundle ❤️ ", + "name": "Djordy Koert", + "location": "The Netherlands", + "company": "@YourSurpriseCom", + "blog": "" + }, { "login": "Dodger77", "repos": [ @@ -13971,7 +14152,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 540, + "rank": 546, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/255767?v=4", "bio": null, @@ -13989,7 +14170,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 541, + "rank": 547, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4302775?v=4", "bio": null, @@ -14007,7 +14188,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 542, + "rank": 548, "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)", @@ -14025,7 +14206,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 543, + "rank": 549, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2161759?v=4", "bio": null, @@ -14043,7 +14224,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 544, + "rank": 550, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/102731189?v=4", "bio": null, @@ -14061,7 +14242,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 545, + "rank": 551, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/21344385?v=4", "bio": null, @@ -14079,7 +14260,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 546, + "rank": 552, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/89589750?v=4", "bio": null, @@ -14097,7 +14278,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 547, + "rank": 553, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/22527985?v=4", "bio": "Entrepreneur, Fullstack Developer and Photographer in the beautiful city of Nantes.", @@ -14115,7 +14296,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 548, + "rank": 554, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6639528?v=4", "bio": null, @@ -14133,7 +14314,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 549, + "rank": 555, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10089551?v=4", "bio": null, @@ -14151,7 +14332,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 550, + "rank": 556, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/591088?v=4", "bio": null, @@ -14160,6 +14341,24 @@ "company": null, "blog": "" }, + { + "login": "Griffon-Weglot", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 557, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/78740961?v=4", + "bio": null, + "name": "Antoine Griffon", + "location": "Paris", + "company": "Weglot", + "blog": "https://weglot.com" + }, { "login": "Guikingone", "repos": [ @@ -14169,7 +14368,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 551, + "rank": 558, "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", @@ -14187,7 +14386,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 552, + "rank": 559, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1503393?v=4", "bio": null, @@ -14205,7 +14404,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 553, + "rank": 560, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/99896288?v=4", "bio": null, @@ -14223,7 +14422,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 554, + "rank": 561, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11915608?v=4", "bio": null, @@ -14241,7 +14440,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 555, + "rank": 562, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2704730?v=4", "bio": null, @@ -14259,7 +14458,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 556, + "rank": 563, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1433301?v=4", "bio": null, @@ -14277,7 +14476,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 557, + "rank": 564, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5990987?v=4", "bio": null, @@ -14286,24 +14485,6 @@ "company": null, "blog": "" }, - { - "login": "JakovKnezovicc", - "repos": [ - { - "repo": "symfony", - "contributions": 1, - "url": "https://github.com/api-platform/symfony" - } - ], - "rank": 558, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/101651825?v=4", - "bio": null, - "name": "jknezovic", - "location": null, - "company": null, - "blog": "" - }, { "login": "JarJak", "repos": [ @@ -14313,7 +14494,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 559, + "rank": 565, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4981490?v=4", "bio": null, @@ -14331,7 +14512,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 560, + "rank": 566, "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.", @@ -14349,7 +14530,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 561, + "rank": 567, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5267726?v=4", "bio": null, @@ -14367,7 +14548,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 562, + "rank": 568, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1903212?v=4", "bio": null, @@ -14385,7 +14566,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 563, + "rank": 569, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/32913603?v=4", "bio": "Medical doctor, Public Health", @@ -14403,7 +14584,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 564, + "rank": 570, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/17642317?v=4", "bio": null, @@ -14421,7 +14602,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 565, + "rank": 571, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5416367?v=4", "bio": "Software Developer, Symfony - NextJs", @@ -14439,7 +14620,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 566, + "rank": 572, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/86676740?v=4", "bio": "👨‍💻 SysOps Engineer \r\n -\r\n🔨 ex-Laravel/PHP developer", @@ -14457,7 +14638,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 567, + "rank": 573, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19251032?v=4", "bio": null, @@ -14475,7 +14656,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 568, + "rank": 574, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/24671528?v=4", "bio": "👨🏻‍💻 Senior Backend Developer | AI Master’s @ Volgatech | 🚀 scalable systems", @@ -14493,7 +14674,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 569, + "rank": 575, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6927077?v=4", "bio": null, @@ -14511,7 +14692,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 570, + "rank": 576, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/99896434?v=4", "bio": null, @@ -14529,7 +14710,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 571, + "rank": 577, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/25544892?v=4", "bio": null, @@ -14547,7 +14728,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 572, + "rank": 578, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/456437?v=4", "bio": null, @@ -14565,7 +14746,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 573, + "rank": 579, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1608265?v=4", "bio": null, @@ -14583,7 +14764,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 574, + "rank": 580, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9105243?v=4", "bio": "Backend Developer | CakePHP Core Member", @@ -14601,7 +14782,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 575, + "rank": 581, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/46711821?v=4", "bio": null, @@ -14619,7 +14800,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 576, + "rank": 582, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/18685557?v=4", "bio": null, @@ -14637,7 +14818,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 577, + "rank": 583, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11477247?v=4", "bio": "Développeuse Web et conférencière chez @jolicode :sparkles: ", @@ -14655,7 +14836,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 578, + "rank": 584, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/18153385?v=4", "bio": "Software Engineer @stoikio ", @@ -14673,7 +14854,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 579, + "rank": 585, "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", @@ -14691,7 +14872,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 580, + "rank": 586, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5618007?v=4", "bio": null, @@ -14709,7 +14890,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 581, + "rank": 587, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1757355?v=4", "bio": "Developer by day, entrepreneur by night (@looselycoupled.nl) 🦸🏽‍♂️", @@ -14727,7 +14908,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 582, + "rank": 588, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/18002435?v=4", "bio": null, @@ -14745,14 +14926,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 583, + "rank": 589, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1380432?v=4", "bio": null, "name": "Mihailo Joksimovic", "location": "Belgrade", - "company": "JAGGAER Direct", - "blog": "http://unstructed.tech" + "company": "Microsoft", + "blog": "http://unstructedtech.com" }, { "login": "MycroftHolmes1989", @@ -14763,7 +14944,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 584, + "rank": 590, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/29265539?v=4", "bio": null, @@ -14781,7 +14962,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 585, + "rank": 591, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8554558?v=4", "bio": null, @@ -14799,7 +14980,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 586, + "rank": 592, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/837719?v=4", "bio": "Christ-follower. Husband. Dad. Maker.", @@ -14817,7 +14998,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 587, + "rank": 593, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/36332481?v=4", "bio": "Thinker.", @@ -14835,7 +15016,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 588, + "rank": 594, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1012403?v=4", "bio": null, @@ -14853,7 +15034,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 589, + "rank": 595, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/43440732?v=4", "bio": null, @@ -14871,14 +15052,14 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 590, + "rank": 596, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7700855?v=4", - "bio": "Web Enthusiast", - "name": "Bastien PELLETIER", + "bio": "I write simple, readable & scalable code, help build a high-quality team, and drive architectural decisions.\r\nClean Architecture / Domain-Driven Design / CQRS", + "name": "Bastien PELLETIER GARNIER", "location": "TOULOUSE", "company": "Webedia - jeuxvideo.com", - "blog": "https://bastien.pelletier.free.fr" + "blog": "http://bastien.pelletier.free.fr" }, { "login": "ParmentierChristophe", @@ -14889,7 +15070,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 591, + "rank": 597, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13301795?v=4", "bio": "Software engineer @adeo", @@ -14907,10 +15088,10 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 592, + "rank": 598, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/854407?v=4", - "bio": "🙃 pɐǝɥ ɹnoʎ uɹnʇ noʎ uǝɥʍ ɥɔʇɐʍ I", + "bio": "🙃 pɐǝɥ ɹnoʎ uɹnʇ noʎ ʍɐs I", "name": "Pierre-Yves", "location": "::1 [France]", "company": null, @@ -14925,7 +15106,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 593, + "rank": 599, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7443490?v=4", "bio": null, @@ -14943,7 +15124,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 594, + "rank": 600, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1333763?v=4", "bio": null, @@ -14961,7 +15142,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 595, + "rank": 601, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5749715?v=4", "bio": null, @@ -14970,6 +15151,24 @@ "company": null, "blog": "https://r6.no" }, + { + "login": "Roemerdt", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 602, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/11140582?v=4", + "bio": "CS student & Full Stack Dev", + "name": "Roemer Blom", + "location": "Amsterdam", + "company": null, + "blog": "https://roemerblom.com" + }, { "login": "RonRademaker", "repos": [ @@ -14979,7 +15178,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 596, + "rank": 603, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2697738?v=4", "bio": null, @@ -14997,7 +15196,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 597, + "rank": 604, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6151929?v=4", "bio": null, @@ -15015,7 +15214,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 598, + "rank": 605, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/29508475?v=4", "bio": "Full-Stack web developer.", @@ -15033,7 +15232,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 599, + "rank": 606, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9016208?v=4", "bio": null, @@ -15051,7 +15250,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 600, + "rank": 607, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/27637158?v=4", "bio": null, @@ -15069,7 +15268,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 601, + "rank": 608, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/884441?v=4", "bio": null, @@ -15087,7 +15286,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 602, + "rank": 609, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2893099?v=4", "bio": "👋 Siema!", @@ -15105,7 +15304,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 603, + "rank": 610, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6765536?v=4", "bio": null, @@ -15123,10 +15322,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 604, + "rank": 611, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3284722?v=4", - "bio": "web dev.", + "bio": "Lead dev.", "name": "Julien", "location": null, "company": null, @@ -15141,7 +15340,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 605, + "rank": 612, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/92581654?v=4", "bio": null, @@ -15150,6 +15349,24 @@ "company": null, "blog": "" }, + { + "login": "Stav88", + "repos": [ + { + "repo": "serializer", + "contributions": 1, + "url": "https://github.com/api-platform/serializer" + } + ], + "rank": 613, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/18213148?v=4", + "bio": null, + "name": null, + "location": null, + "company": null, + "blog": "" + }, { "login": "Stranger6667", "repos": [ @@ -15159,7 +15376,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 606, + "rank": 614, "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", @@ -15177,7 +15394,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 607, + "rank": 615, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/12063011?v=4", "bio": null, @@ -15195,7 +15412,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 608, + "rank": 616, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1507731?v=4", "bio": null, @@ -15213,7 +15430,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 609, + "rank": 617, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/54551451?v=4", "bio": null, @@ -15231,7 +15448,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 610, + "rank": 618, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/25651512?v=4", "bio": "Felix Ruby R²", @@ -15249,7 +15466,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 611, + "rank": 619, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5079109?v=4", "bio": "Hi,\r\nPHP/API-plateform/Symfony/Drupal Developer.", @@ -15267,7 +15484,7 @@ "url": "https://github.com/api-platform/openapi" } ], - "rank": 612, + "rank": 620, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/839801?v=4", "bio": "I write web applications in PHP using Symfony. He/him.", @@ -15285,7 +15502,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 613, + "rank": 621, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1403556?v=4", "bio": null, @@ -15303,7 +15520,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 614, + "rank": 622, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1952805?v=4", "bio": null, @@ -15321,7 +15538,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 615, + "rank": 623, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/29451132?v=4", "bio": null, @@ -15339,7 +15556,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 616, + "rank": 624, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19326477?v=4", "bio": null, @@ -15357,7 +15574,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 617, + "rank": 625, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/28780594?v=4", "bio": null, @@ -15366,6 +15583,24 @@ "company": null, "blog": "https://moebuta.org/" }, + { + "login": "Will-thom", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 626, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/116388885?v=4", + "bio": "Senior Software Engineer | Fullstack, Backend & Architecture | Distributed Systems, Cloud and AI Automation", + "name": "Silva Dev BR", + "location": null, + "company": null, + "blog": "" + }, { "login": "Zebradil", "repos": [ @@ -15375,7 +15610,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 618, + "rank": 627, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1475583?v=4", "bio": "SRE at @trivago ", @@ -15384,6 +15619,24 @@ "company": "@trivago ", "blog": "https://zebradil.me" }, + { + "login": "Zippovich2", + "repos": [ + { + "repo": "graphql", + "contributions": 1, + "url": "https://github.com/api-platform/graphql" + } + ], + "rank": 628, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/26221873?v=4", + "bio": null, + "name": "Skoropadskyi Roman", + "location": null, + "company": null, + "blog": "" + }, { "login": "a-dasilva", "repos": [ @@ -15393,7 +15646,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 619, + "rank": 629, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14129266?v=4", "bio": null, @@ -15411,7 +15664,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 620, + "rank": 630, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/17406826?v=4", "bio": null, @@ -15429,7 +15682,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 621, + "rank": 631, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/12262847?v=4", "bio": null, @@ -15447,14 +15700,14 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 622, + "rank": 632, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/611271?v=4", "bio": null, "name": "Adrien Brault", "location": "France", "company": null, - "blog": "https://linktr.ee/adrienbrault" + "blog": "https://adrien.brage.fr" }, { "login": "ahmed-hachena", @@ -15465,7 +15718,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 623, + "rank": 633, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7711877?v=4", "bio": "Freelance web developer", @@ -15483,7 +15736,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 624, + "rank": 634, "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.", @@ -15501,7 +15754,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 625, + "rank": 635, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1524422?v=4", "bio": "Freelance Developer on Symfony, React / NextJS & WordPress", @@ -15519,7 +15772,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 626, + "rank": 636, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7757298?v=4", "bio": null, @@ -15537,7 +15790,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 627, + "rank": 637, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1586450?v=4", "bio": null, @@ -15555,7 +15808,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 628, + "rank": 638, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/383198?v=4", "bio": "@mongodb lead engineer. open source contributor, maintainer, and advocate.", @@ -15573,7 +15826,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 629, + "rank": 639, "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", @@ -15591,7 +15844,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 630, + "rank": 640, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3056148?v=4", "bio": null, @@ -15609,7 +15862,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 631, + "rank": 641, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/105975?v=4", "bio": "IT freelancer in love with @symfony", @@ -15627,7 +15880,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 632, + "rank": 642, "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", @@ -15645,7 +15898,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 633, + "rank": 643, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4458806?v=4", "bio": "Web Analyst & Developer \r\n- \r\nDevOps\r\n", @@ -15663,10 +15916,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 634, + "rank": 644, "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", + "bio": "Founding Engineer Swiss Knife for @meterly (hyperline) \r\n--\r\nEx-Senior Core dev @Spendesk \r\nEx-Core Team Engineer @akeneo", "name": "nanou", "location": "Nantes", "company": "@meterly ", @@ -15681,7 +15934,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 635, + "rank": 645, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1681800?v=4", "bio": null, @@ -15699,7 +15952,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 636, + "rank": 646, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/18536571?v=4", "bio": null, @@ -15717,7 +15970,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 637, + "rank": 647, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/541665?v=4", "bio": null, @@ -15735,7 +15988,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 638, + "rank": 648, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/26335275?v=4", "bio": null, @@ -15753,7 +16006,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 639, + "rank": 649, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/37752638?v=4", "bio": null, @@ -15771,14 +16024,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 640, + "rank": 650, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3502280?v=4", "bio": "Software Developer", "name": "Andy Tait", "location": "UK", "company": null, - "blog": "https://twitter.com/andytait" + "blog": "" }, { "login": "andytson-inviqa", @@ -15789,7 +16042,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 641, + "rank": 651, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11387086?v=4", "bio": null, @@ -15807,7 +16060,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 642, + "rank": 652, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11900120?v=4", "bio": null, @@ -15816,6 +16069,24 @@ "company": null, "blog": "" }, + { + "login": "artandor", + "repos": [ + { + "repo": "create-client", + "contributions": 1, + "url": "https://github.com/api-platform/create-client" + } + ], + "rank": 653, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/22364556?v=4", + "bio": "IT Fullstack dev (symfony, react and next) with a good RabbitMQ experience.", + "name": "Nicolas MYLLE", + "location": "Lille", + "company": null, + "blog": "" + }, { "login": "arunnethues", "repos": [ @@ -15825,7 +16096,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 643, + "rank": 654, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/15616381?v=4", "bio": null, @@ -15843,7 +16114,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 644, + "rank": 655, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1073273?v=4", "bio": null, @@ -15861,7 +16132,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 645, + "rank": 656, "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", @@ -15879,7 +16150,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 646, + "rank": 657, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23396605?v=4", "bio": null, @@ -15897,7 +16168,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 647, + "rank": 658, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9268494?v=4", "bio": "pas très bio", @@ -15915,7 +16186,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 648, + "rank": 659, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4849233?v=4", "bio": "Lead Developer back-end PHP", @@ -15933,7 +16204,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 649, + "rank": 660, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1140272?v=4", "bio": null, @@ -15951,7 +16222,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 650, + "rank": 661, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/515957?v=4", "bio": null, @@ -15969,7 +16240,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 651, + "rank": 662, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/24526321?v=4", "bio": "Freelance back end web developer.\r\n@symfony", @@ -15987,7 +16258,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 652, + "rank": 663, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4162677?v=4", "bio": null, @@ -16005,7 +16276,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 653, + "rank": 664, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/712014?v=4", "bio": null, @@ -16023,7 +16294,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 654, + "rank": 665, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/829364?v=4", "bio": null, @@ -16041,7 +16312,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 655, + "rank": 666, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/235928?v=4", "bio": "Father, geek in general, rookie writer, technical manager of eZ Platform.", @@ -16059,7 +16330,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 656, + "rank": 667, "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?", @@ -16077,7 +16348,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 657, + "rank": 668, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9569157?v=4", "bio": null, @@ -16095,7 +16366,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 658, + "rank": 669, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1955007?v=4", "bio": null, @@ -16113,7 +16384,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 659, + "rank": 670, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/212269?v=4", "bio": null, @@ -16131,7 +16402,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 660, + "rank": 671, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2156742?v=4", "bio": "Web application developer based in the French Alps.", @@ -16149,7 +16420,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 661, + "rank": 672, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/200069340?v=4", "bio": null, @@ -16167,7 +16438,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 662, + "rank": 673, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4040743?v=4", "bio": null, @@ -16185,7 +16456,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 663, + "rank": 674, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1362807?v=4", "bio": "Haskell, ViM, Pastas", @@ -16194,24 +16465,6 @@ "company": null, "blog": "https://gautier.difolco.dev/" }, - { - "login": "blanky0230", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 664, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/5700358?v=4", - "bio": null, - "name": "Thomas Blank", - "location": "Germany", - "company": "@mayflower ", - "blog": "" - }, { "login": "blazarecki", "repos": [ @@ -16221,7 +16474,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 665, + "rank": 675, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1443312?v=4", "bio": null, @@ -16239,7 +16492,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 666, + "rank": 676, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1051554?v=4", "bio": null, @@ -16257,7 +16510,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 667, + "rank": 677, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14184523?v=4", "bio": "Full Stack Developer", @@ -16266,24 +16519,6 @@ "company": "Sitemanager", "blog": "" }, - { - "login": "bobey", - "repos": [ - { - "repo": "api-platform", - "contributions": 1, - "url": "https://github.com/api-platform/api-platform" - } - ], - "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.", - "name": "Olivier Balais", - "location": "Lyon, France", - "company": "@Semji ", - "blog": "https://blog.overnetcity.com" - }, { "login": "botris", "repos": [ @@ -16293,7 +16528,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 669, + "rank": 678, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1439557?v=4", "bio": null, @@ -16311,7 +16546,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 670, + "rank": 679, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/209230?v=4", "bio": null, @@ -16329,7 +16564,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 671, + "rank": 680, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6572776?v=4", "bio": null, @@ -16338,6 +16573,24 @@ "company": "Decentraland", "blog": "" }, + { + "login": "bricejulia", + "repos": [ + { + "repo": "demo", + "contributions": 1, + "url": "https://github.com/api-platform/demo" + } + ], + "rank": 681, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/7558030?v=4", + "bio": "Software Engineer. PHP / Symfony / React / Typescript / Docker / Kubernetes", + "name": "Brice Julia", + "location": "Aix-en-provence", + "company": null, + "blog": "https://www.bricejulia.me" + }, { "login": "bsidev", "repos": [ @@ -16347,7 +16600,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 672, + "rank": 682, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6417654?v=4", "bio": null, @@ -16365,12 +16618,12 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 673, + "rank": 683, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/149716117?v=4", "bio": null, "name": null, - "location": "Calgary", + "location": null, "company": null, "blog": "" }, @@ -16383,7 +16636,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 674, + "rank": 684, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/956847?v=4", "bio": null, @@ -16401,7 +16654,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 675, + "rank": 685, "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.", @@ -16410,24 +16663,6 @@ "company": "Florida State University", "blog": "http://www.caseymclaughlin.com" }, - { - "login": "cay89", - "repos": [ - { - "repo": "laravel", - "contributions": 1, - "url": "https://github.com/api-platform/laravel" - } - ], - "rank": 676, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/3186515?v=4", - "bio": null, - "name": null, - "location": null, - "company": null, - "blog": "" - }, { "login": "cdaguerre", "repos": [ @@ -16437,7 +16672,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 677, + "rank": 686, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4642448?v=4", "bio": null, @@ -16455,7 +16690,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 678, + "rank": 687, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/883497?v=4", "bio": null, @@ -16473,7 +16708,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 679, + "rank": 688, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6780152?v=4", "bio": null, @@ -16491,7 +16726,7 @@ "url": "https://github.com/api-platform/graphql" } ], - "rank": 680, + "rank": 689, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/47795200?v=4", "bio": null, @@ -16509,7 +16744,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 681, + "rank": 690, "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", @@ -16527,7 +16762,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 682, + "rank": 691, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13640912?v=4", "bio": null, @@ -16545,7 +16780,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 683, + "rank": 692, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3925?v=4", "bio": null, @@ -16563,7 +16798,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 684, + "rank": 693, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3041408?v=4", "bio": null, @@ -16572,6 +16807,24 @@ "company": null, "blog": "" }, + { + "login": "cngJo", + "repos": [ + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 694, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/17183555?v=4", + "bio": "24 y/o Developer from Bavaria / Germany. Working in a Web-Agency and part-time self-employed. Working with PHP (Symfony, TYPO3, Shopware), Vue, React and Go. ", + "name": "Johannes Przymusinski", + "location": "Regensburg / Bavaria", + "company": "@die-lobby / @jop-software ", + "blog": "https://jop-software.de" + }, { "login": "cnizzardini", "repos": [ @@ -16581,7 +16834,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 685, + "rank": 695, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/171294?v=4", "bio": "Warp drives, not bombs.", @@ -16599,7 +16852,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 686, + "rank": 696, "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.", @@ -16617,7 +16870,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 687, + "rank": 697, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/42181698?v=4", "bio": null, @@ -16635,7 +16888,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 688, + "rank": 698, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6598426?v=4", "bio": null, @@ -16653,7 +16906,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 689, + "rank": 699, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/896494?v=4", "bio": null, @@ -16671,7 +16924,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 690, + "rank": 700, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7203944?v=4", "bio": "Symfony-Certified Full-Stack Developer", @@ -16689,7 +16942,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 691, + "rank": 701, "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.", @@ -16707,7 +16960,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 692, + "rank": 702, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/594384?v=4", "bio": null, @@ -16725,7 +16978,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 693, + "rank": 703, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1032689?v=4", "bio": null, @@ -16743,7 +16996,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 694, + "rank": 704, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3310256?v=4", "bio": null, @@ -16761,7 +17014,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 695, + "rank": 705, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/15359784?v=4", "bio": "Web developer from Slovakia.", @@ -16779,7 +17032,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 696, + "rank": 706, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1019982?v=4", "bio": null, @@ -16797,13 +17050,13 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 697, + "rank": 707, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/22883097?v=4", - "bio": "Lead Developer @wanadev ", + "bio": "Senior Developer @ Vivlio", "name": "Damien Fernandes", "location": "Lyon, France", - "company": "@wanadev", + "company": "Vivlio", "blog": "" }, { @@ -16815,7 +17068,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 698, + "rank": 708, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/16171524?v=4", "bio": "Senior lead developer PHP / Symfony / Vue.js ", @@ -16833,7 +17086,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 699, + "rank": 709, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/110678?v=4", "bio": "Building the new thing. Formerly CTO at @platformsh.", @@ -16851,7 +17104,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 700, + "rank": 710, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19910826?v=4", "bio": "Senior Software Engineer && Cybersecurity Enthusiast", @@ -16869,7 +17122,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 701, + "rank": 711, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/20062409?v=4", "bio": null, @@ -16887,10 +17140,10 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 702, + "rank": 712, "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.", + "bio": "Staff software engineer, MSc. Experienced in range of languages including PHP, Python, Golang, Java. API design, network automation, big data analysis.", "name": "Dan", "location": "Kent, United Kingdom", "company": null, @@ -16905,7 +17158,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 703, + "rank": 713, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/72162602?v=4", "bio": null, @@ -16923,7 +17176,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 704, + "rank": 714, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/76576?v=4", "bio": null, @@ -16941,7 +17194,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 705, + "rank": 715, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/516028?v=4", "bio": null, @@ -16959,7 +17212,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 706, + "rank": 716, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1096670?v=4", "bio": null, @@ -16977,7 +17230,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 707, + "rank": 717, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/870747?v=4", "bio": null, @@ -16986,6 +17239,24 @@ "company": "Symfony/Sylius developer", "blog": "" }, + { + "login": "djaszak", + "repos": [ + { + "repo": "admin", + "contributions": 1, + "url": "https://github.com/api-platform/admin" + } + ], + "rank": 718, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/23051584?v=4", + "bio": "Software-Developer currently focussing on React", + "name": "Dennis Jaszak", + "location": "Dresden", + "company": "Strucnamics Engineering", + "blog": "" + }, { "login": "dmerchier", "repos": [ @@ -16995,7 +17266,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 708, + "rank": 719, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9839957?v=4", "bio": null, @@ -17013,7 +17284,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 709, + "rank": 720, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3167934?v=4", "bio": null, @@ -17031,7 +17302,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 710, + "rank": 721, "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", @@ -17049,7 +17320,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 711, + "rank": 722, "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.", @@ -17067,7 +17338,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 712, + "rank": 723, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/15091453?v=4", "bio": null, @@ -17085,7 +17356,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 713, + "rank": 724, "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. ", @@ -17103,7 +17374,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 714, + "rank": 725, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1235763?v=4", "bio": null, @@ -17121,7 +17392,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 715, + "rank": 726, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/37578863?v=4", "bio": null, @@ -17139,10 +17410,10 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 716, + "rank": 727, "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.", + "bio": "DevOps by day, contributor by night.\r\n@PaloAltoNetworks | Ex @Intel", "name": "Emmanuel Ferdman", "location": "Israel", "company": null, @@ -17157,7 +17428,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 717, + "rank": 728, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/362286?v=4", "bio": "Web, PHP, eZ Platform / Ibexa & certified Symfony/Twig developer. A geek.", @@ -17175,7 +17446,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 718, + "rank": 729, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7689512?v=4", "bio": "Software Engineer at @utrustdev", @@ -17193,7 +17464,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 719, + "rank": 730, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/190071255?v=4", "bio": null, @@ -17211,7 +17482,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 720, + "rank": 731, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5497623?v=4", "bio": "SRE at AB Tasty", @@ -17229,7 +17500,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 721, + "rank": 732, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1271407?v=4", "bio": "Software Architect", @@ -17247,7 +17518,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 722, + "rank": 733, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/869693?v=4", "bio": null, @@ -17265,7 +17536,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 723, + "rank": 734, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1116116?v=4", "bio": "\r\n PHP Developer\r\n", @@ -17283,7 +17554,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 724, + "rank": 735, "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", @@ -17301,12 +17572,12 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 725, + "rank": 736, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/45320122?v=4", "bio": null, "name": "Florent Drousset", - "location": "Toulouse, France", + "location": "Paris, France", "company": null, "blog": "https://akainotes.org" }, @@ -17319,7 +17590,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 726, + "rank": 737, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/42182076?v=4", "bio": null, @@ -17337,7 +17608,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 727, + "rank": 738, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/549369?v=4", "bio": null, @@ -17355,7 +17626,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 728, + "rank": 739, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7473665?v=4", "bio": "Back-end Developer, Symfony framework enthusiast :heart:", @@ -17373,7 +17644,7 @@ "url": "https://github.com/api-platform/metadata" } ], - "rank": 729, + "rank": 740, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/84379080?v=4", "bio": null, @@ -17391,7 +17662,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 730, + "rank": 741, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3305030?v=4", "bio": "symfony dev since 2011", @@ -17409,7 +17680,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 731, + "rank": 742, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1269390?v=4", "bio": null, @@ -17427,7 +17698,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 732, + "rank": 743, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/136336424?v=4", "bio": null, @@ -17445,13 +17716,13 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 733, + "rank": 744, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/421597?v=4", "bio": "PHP & Node.js Developer", "name": "Adam Gąsowski", "location": "Warsaw, Poland", - "company": null, + "company": "VanityStyle", "blog": "https://gander.pl" }, { @@ -17463,10 +17734,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 734, + "rank": 745, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/25979809?v=4", - "bio": null, + "bio": "doing things at @postmanlabs ", "name": "Diego García", "location": "Madrid (Spain)", "company": "@postman-eng ", @@ -17481,7 +17752,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 735, + "rank": 746, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10700464?v=4", "bio": null, @@ -17499,7 +17770,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 736, + "rank": 747, "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.", @@ -17517,7 +17788,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 737, + "rank": 748, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7810053?v=4", "bio": "Puzzles, puzzles everywhere!", @@ -17535,7 +17806,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 738, + "rank": 749, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8518239?v=4", "bio": null, @@ -17553,7 +17824,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 739, + "rank": 750, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/965689?v=4", "bio": null, @@ -17571,7 +17842,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 740, + "rank": 751, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1622353?v=4", "bio": null, @@ -17589,7 +17860,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 741, + "rank": 752, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3619476?v=4", "bio": null, @@ -17607,7 +17878,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 742, + "rank": 753, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/401993?v=4", "bio": "Dev back et caetera", @@ -17625,7 +17896,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 743, + "rank": 754, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/152367?v=4", "bio": null, @@ -17643,7 +17914,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 744, + "rank": 755, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5052984?v=4", "bio": "Freelance PHP Web developer. Addicted to Symfony framework since 2013.", @@ -17661,7 +17932,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 745, + "rank": 756, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/334907?v=4", "bio": "Software Engineer", @@ -17679,7 +17950,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 746, + "rank": 757, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/235550?v=4", "bio": "Senior Software Lead Developer\r\nFreelancer @ KODERO\r\nFormer tech lead @sensiolabs & @dayuseio\r\nCreator of Apprendre-PHP.com\r\nBook author & speaker", @@ -17697,7 +17968,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 747, + "rank": 758, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1614615?v=4", "bio": null, @@ -17706,24 +17977,6 @@ "company": "Check24", "blog": "" }, - { - "login": "hshn", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 748, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1334026?v=4", - "bio": null, - "name": "Shota Hoshino", - "location": "Japan", - "company": null, - "blog": "https://blog.hshn.dev/" - }, { "login": "hugohenrique", "repos": [ @@ -17733,7 +17986,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 749, + "rank": 759, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4316743?v=4", "bio": null, @@ -17751,7 +18004,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 750, + "rank": 760, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/67441578?v=4", "bio": null, @@ -17769,7 +18022,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 751, + "rank": 761, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/53101?v=4", "bio": null, @@ -17787,50 +18040,50 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 752, + "rank": 762, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13620718?v=4", "bio": null, "name": "Igor", "location": "Szczecin", "company": "•fortrabbit", - "blog": "" + "blog": "https://www.fortrabbit.com" }, { - "login": "ip512", + "login": "ikamikaz3", "repos": [ { - "repo": "docs", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/api-platform/docs" + "url": "https://github.com/api-platform/symfony" } ], - "rank": 753, + "rank": 763, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1699735?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/10922885?v=4", "bio": null, - "name": "Gregory", - "location": "Paris - France", - "company": "Radio France", + "name": "Thomas", + "location": "Paris", + "company": "Epitech", "blog": "" }, { - "login": "ismail1432", + "login": "ip512", "repos": [ { - "repo": "core", + "repo": "docs", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/docs" } ], - "rank": 754, + "rank": 764, "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", - "name": "Smaine Milianni", - "location": "Paris", - "company": "@yousign", - "blog": "https://www.smaine.me" + "avatar_url": "https://avatars.githubusercontent.com/u/1699735?v=4", + "bio": null, + "name": "Gregory", + "location": "Paris - France", + "company": "Radio France", + "blog": "" }, { "login": "itodor", @@ -17841,7 +18094,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 755, + "rank": 765, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10237885?v=4", "bio": null, @@ -17859,7 +18112,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 756, + "rank": 766, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3932407?v=4", "bio": null, @@ -17877,7 +18130,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 757, + "rank": 767, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6392429?v=4", "bio": null, @@ -17895,13 +18148,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 758, + "rank": 768, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5463371?v=4", "bio": null, "name": "Jan Klan", "location": "Australia", - "company": "Tactic Media Pty Ltd", + "company": "@tacticmedia ", "blog": "https://jan.klan.com.au" }, { @@ -17913,7 +18166,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 759, + "rank": 769, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6679750?v=4", "bio": null, @@ -17931,7 +18184,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 760, + "rank": 770, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1665948?v=4", "bio": null, @@ -17940,6 +18193,24 @@ "company": "Goelo", "blog": "https://www.goelo.com" }, + { + "login": "jbtronics", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 771, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/5410681?v=4", + "bio": "A physics Phd student from Germany interested in programming and electronics.", + "name": "Jan Böhmer", + "location": "Jena, Germany", + "company": "PhD Student, Friedrich-Schiller-Universität Jena", + "blog": "" + }, { "login": "jcarrier-vp", "repos": [ @@ -17949,7 +18220,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 761, + "rank": 772, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/38564918?v=4", "bio": null, @@ -17967,7 +18238,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 762, + "rank": 773, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1262628?v=4", "bio": null, @@ -17985,7 +18256,7 @@ "url": "https://github.com/api-platform/elasticsearch" } ], - "rank": 763, + "rank": 774, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1324077?v=4", "bio": null, @@ -18003,14 +18274,14 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 764, + "rank": 775, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4689360?v=4", "bio": null, "name": "Jérémy Dutheil", "location": "France", "company": null, - "blog": "http://www.jeremy-dutheil.fr" + "blog": "http://jdutheil.dev" }, { "login": "jeansebastienh", @@ -18018,17 +18289,35 @@ { "repo": "core", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/core" + } + ], + "rank": 776, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/1225931?v=4", + "bio": null, + "name": "Jean-Sébastien Hedde", + "location": "Paris, France", + "company": "@scaleway ", + "blog": "http://www.au-fil-du.net" + }, + { + "login": "jeremy-crapet", + "repos": [ + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" } ], - "rank": 765, + "rank": 777, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1225931?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/1379286?v=4", "bio": null, - "name": "Jean-Sébastien Hedde", - "location": "Paris, France", - "company": "@scaleway ", - "blog": "http://www.au-fil-du.net" + "name": "Jérémy Crapet", + "location": "Lille", + "company": null, + "blog": "" }, { "login": "jerodev", @@ -18039,7 +18328,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 766, + "rank": 778, "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", @@ -18057,7 +18346,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 767, + "rank": 779, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/428556?v=4", "bio": null, @@ -18075,7 +18364,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 768, + "rank": 780, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14272131?v=4", "bio": "Software developer since 2008", @@ -18093,14 +18382,14 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 769, + "rank": 781, "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.", - "name": "Jonathan S.", - "location": "Chambéry", + "bio": null, + "name": "John S.", + "location": null, "company": null, - "blog": "https://www.johnstyle.fr" + "blog": "" }, { "login": "jon1328", @@ -18111,7 +18400,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 770, + "rank": 782, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/28010598?v=4", "bio": null, @@ -18129,7 +18418,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 771, + "rank": 783, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11443300?v=4", "bio": null, @@ -18147,7 +18436,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 772, + "rank": 784, "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.", @@ -18165,7 +18454,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 773, + "rank": 785, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1228441?v=4", "bio": null, @@ -18183,7 +18472,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 774, + "rank": 786, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/106443?v=4", "bio": "I like stupid hacks, like http://😁.xmtp.net", @@ -18201,7 +18490,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 775, + "rank": 787, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6794810?v=4", "bio": "Hello World", @@ -18219,10 +18508,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 776, + "rank": 788, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7212435?v=4", - "bio": "Geek level 27 | Développeur Web", + "bio": "Geek level 28 | Développeur Web", "name": "Joël", "location": "Neuchâtel, Suisse", "company": "@vnvsa", @@ -18237,7 +18526,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 777, + "rank": 789, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7237008?v=4", "bio": null, @@ -18255,7 +18544,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 778, + "rank": 790, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/548449?v=4", "bio": null, @@ -18273,7 +18562,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 779, + "rank": 791, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/45685876?v=4", "bio": null, @@ -18291,7 +18580,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 780, + "rank": 792, "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. ", @@ -18309,7 +18598,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 781, + "rank": 793, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/74016280?v=4", "bio": null, @@ -18327,7 +18616,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 782, + "rank": 794, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5073617?v=4", "bio": null, @@ -18345,7 +18634,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 783, + "rank": 795, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1562675?v=4", "bio": null, @@ -18363,7 +18652,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 784, + "rank": 796, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23117971?v=4", "bio": null, @@ -18381,7 +18670,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 785, + "rank": 797, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/193112?v=4", "bio": null, @@ -18399,7 +18688,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 786, + "rank": 798, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/605742?v=4", "bio": "I write code.", @@ -18417,7 +18706,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 787, + "rank": 799, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/35854135?v=4", "bio": null, @@ -18435,7 +18724,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 788, + "rank": 800, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2589943?v=4", "bio": "Building scalable info systems on-premise and in-cloud. ", @@ -18453,7 +18742,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 789, + "rank": 801, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/157602645?v=4", "bio": null, @@ -18471,7 +18760,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 790, + "rank": 802, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2345927?v=4", "bio": null, @@ -18489,7 +18778,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 791, + "rank": 803, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/31816531?v=4", "bio": "Exploring the field of Computer Engineering.......", @@ -18507,7 +18796,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 792, + "rank": 804, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1876331?v=4", "bio": "Lead full stack developer\r\n📍Paris\r\n", @@ -18525,7 +18814,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 793, + "rank": 805, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/92924074?v=4", "bio": null, @@ -18543,7 +18832,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 794, + "rank": 806, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/81818138?v=4", "bio": null, @@ -18561,7 +18850,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 795, + "rank": 807, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4620699?v=4", "bio": null, @@ -18579,7 +18868,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 796, + "rank": 808, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/94551625?v=4", "bio": null, @@ -18597,7 +18886,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 797, + "rank": 809, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1088155?v=4", "bio": null, @@ -18615,7 +18904,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 798, + "rank": 810, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/763873?v=4", "bio": null, @@ -18633,7 +18922,7 @@ "url": "https://github.com/api-platform/api-pack" } ], - "rank": 799, + "rank": 811, "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.", @@ -18651,7 +18940,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 800, + "rank": 812, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/81240?v=4", "bio": null, @@ -18669,7 +18958,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 801, + "rank": 813, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13121784?v=4", "bio": null, @@ -18687,7 +18976,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 802, + "rank": 814, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10156301?v=4", "bio": null, @@ -18705,7 +18994,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 803, + "rank": 815, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4265745?v=4", "bio": null, @@ -18723,7 +19012,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 804, + "rank": 816, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/33978796?v=4", "bio": null, @@ -18741,7 +19030,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 805, + "rank": 817, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/34691216?v=4", "bio": "Infrastructure Engineer\r\n@Cloud-Algebra ", @@ -18759,7 +19048,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 806, + "rank": 818, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/3955802?v=4", "bio": null, @@ -18777,7 +19066,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 807, + "rank": 819, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/16276382?v=4", "bio": null, @@ -18795,14 +19084,32 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 808, + "rank": 820, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/52066916?v=4", - "bio": null, + "bio": "Open-source developer and TTRPG nerd. Building whatever scratches the itch — from low-level infra to desktop ricing to game night tools.", "name": "Marc Straube", - "location": "Germany", + "location": "Cologne, Germany", + "company": null, + "blog": "https://ko-fi.com/marcstraube" + }, + { + "login": "marius-swfy", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 821, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/203628922?v=4", + "bio": null, + "name": "Marius T", + "location": null, "company": null, - "blog": "https://ko-fi.com/nerdybynature" + "blog": "" }, { "login": "mark-gerarts", @@ -18813,13 +19120,13 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 809, + "rank": 822, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11940560?v=4", "bio": null, "name": "Mark Gerarts", "location": "Belgium", - "company": "Jessa ZH", + "company": "UHasselt", "blog": "" }, { @@ -18831,7 +19138,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 810, + "rank": 823, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/35062298?v=4", "bio": null, @@ -18849,7 +19156,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 811, + "rank": 824, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/55245291?v=4", "bio": null, @@ -18867,7 +19174,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 812, + "rank": 825, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/94405658?v=4", "bio": null, @@ -18885,7 +19192,7 @@ "url": "https://github.com/api-platform/postman-collection-generator" } ], - "rank": 813, + "rank": 826, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4295444?v=4", "bio": null, @@ -18903,7 +19210,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 814, + "rank": 827, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/61539540?v=4", "bio": null, @@ -18921,7 +19228,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 815, + "rank": 828, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5319267?v=4", "bio": "Full stack dev. ", @@ -18939,7 +19246,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 816, + "rank": 829, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1532615?v=4", "bio": "PHP Consultant & Trainer", @@ -18957,7 +19264,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 817, + "rank": 830, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/32196785?v=4", "bio": null, @@ -18975,7 +19282,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 818, + "rank": 831, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/53557695?v=4", "bio": "PHP, Symfony Developer / Open Source Contributor", @@ -18993,7 +19300,7 @@ "url": "https://github.com/api-platform/graphql" } ], - "rank": 819, + "rank": 832, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/107232?v=4", "bio": null, @@ -19002,6 +19309,24 @@ "company": null, "blog": "" }, + { + "login": "melany-mai", + "repos": [ + { + "repo": "symfony", + "contributions": 1, + "url": "https://github.com/api-platform/symfony" + } + ], + "rank": 833, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/212367210?v=4", + "bio": "Fullstack · Symfony · always learning.", + "name": null, + "location": "Bordeaux, FR 🇲🇫​", + "company": null, + "blog": "" + }, { "login": "mgiraud", "repos": [ @@ -19011,7 +19336,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 820, + "rank": 834, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11818237?v=4", "bio": null, @@ -19029,7 +19354,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 821, + "rank": 835, "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...", @@ -19047,7 +19372,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 822, + "rank": 836, "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", @@ -19056,24 +19381,6 @@ "company": "Rochester Institute of Technology", "blog": "https://michael.mior.ca" }, - { - "login": "mitalcoi", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 823, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/3224226?v=4", - "bio": null, - "name": "Sorokin Victor", - "location": "Armenia, Erevan", - "company": "RiverWay", - "blog": "" - }, { "login": "mkantor", "repos": [ @@ -19083,7 +19390,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 824, + "rank": 837, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/35091?v=4", "bio": null, @@ -19101,10 +19408,10 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 825, + "rank": 838, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7735145?v=4", - "bio": "Little maniac, with great plans", + "bio": "Desaster fairy", "name": "Maciej Krüger", "location": "Austria", "company": null, @@ -19119,7 +19426,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 826, + "rank": 839, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23735276?v=4", "bio": "Fullstack JS developer / Code cleaner", @@ -19137,7 +19444,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 827, + "rank": 840, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/720328?v=4", "bio": "👋 Open-source builder", @@ -19155,7 +19462,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 828, + "rank": 841, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/13241270?v=4", "bio": "hi", @@ -19173,7 +19480,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 829, + "rank": 842, "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", @@ -19191,7 +19498,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 830, + "rank": 843, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19224748?v=4", "bio": null, @@ -19209,7 +19516,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 831, + "rank": 844, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/98848360?v=4", "bio": null, @@ -19227,7 +19534,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 832, + "rank": 845, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1771206?v=4", "bio": "Freelance Web Developer", @@ -19245,7 +19552,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 833, + "rank": 846, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/23331779?v=4", "bio": null, @@ -19263,7 +19570,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 834, + "rank": 847, "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 🦄", @@ -19281,7 +19588,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 835, + "rank": 848, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8603325?v=4", "bio": "Eat, Code, Sleep and Travel", @@ -19299,7 +19606,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 836, + "rank": 849, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6339309?v=4", "bio": "Back-end Developer @ Yousign", @@ -19317,7 +19624,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 837, + "rank": 850, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1086726?v=4", "bio": null, @@ -19335,7 +19642,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 838, + "rank": 851, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/531753?v=4", "bio": "I develop web based application.", @@ -19353,7 +19660,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 839, + "rank": 852, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/95935?v=4", "bio": null, @@ -19371,7 +19678,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 840, + "rank": 853, "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/", @@ -19389,7 +19696,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 841, + "rank": 854, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/22686876?v=4", "bio": "AI Graduate Research Fellow at the University of Bari", @@ -19398,24 +19705,6 @@ "company": null, "blog": "" }, - { - "login": "nicolassing", - "repos": [ - { - "repo": "docs", - "contributions": 1, - "url": "https://github.com/api-platform/docs" - } - ], - "rank": 842, - "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/619752?v=4", - "bio": "PHP Developper", - "name": "Nicolas Assing", - "location": "Paris", - "company": "Sézane", - "blog": "" - }, { "login": "nikita-ushakov", "repos": [ @@ -19425,7 +19714,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 843, + "rank": 855, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2195862?v=4", "bio": null, @@ -19443,7 +19732,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 844, + "rank": 856, "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.", @@ -19461,15 +19750,33 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 845, + "rank": 857, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/25424263?v=4", - "bio": "Just another Unix nerd.\r\n\r\nI use GitLab for my own projects (see the link).", + "bio": "Web developer and sysadmin.\r\n\r\nI use GitLab for my own projects (see the link).", "name": "Douglas Silva", "location": "Brazil", "company": null, "blog": "https://gitlab.com/crimson.king" }, + { + "login": "obalais", + "repos": [ + { + "repo": "api-platform", + "contributions": 1, + "url": "https://github.com/api-platform/api-platform" + } + ], + "rank": 858, + "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.", + "name": "Olivier Balais", + "location": "Lyon, France", + "company": "@Semji ", + "blog": "https://blog.overnetcity.com" + }, { "login": "onadrog", "repos": [ @@ -19479,7 +19786,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 846, + "rank": 859, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/46002955?v=4", "bio": null, @@ -19497,7 +19804,7 @@ "url": "https://github.com/api-platform/symfony" } ], - "rank": 847, + "rank": 860, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2412041?v=4", "bio": null, @@ -19515,7 +19822,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 848, + "rank": 861, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2588533?v=4", "bio": null, @@ -19533,10 +19840,10 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 849, + "rank": 862, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/28441561?v=4", - "bio": "an undergraduate and a platform engineer at @zeabur", + "bio": "Platform Engineer at @zeabur", "name": "Yi-Jyun Pan", "location": "Taiwan", "company": "@zeabur", @@ -19551,7 +19858,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 850, + "rank": 863, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4503898?v=4", "bio": "Tech lover, Docker certified, arduino hacker wannabe", @@ -19569,7 +19876,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 851, + "rank": 864, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2878951?v=4", "bio": "I think I can program. ", @@ -19587,7 +19894,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 852, + "rank": 865, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5345273?v=4", "bio": "@mongodb Senior Software Engineer on the PHP DBX team ", @@ -19605,7 +19912,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 853, + "rank": 866, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8417078?v=4", "bio": null, @@ -19614,6 +19921,24 @@ "company": null, "blog": "" }, + { + "login": "petski", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 867, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/116610?v=4", + "bio": null, + "name": "Patrick Kuijvenhoven", + "location": "Netherlands", + "company": null, + "blog": "" + }, { "login": "pfrenssen", "repos": [ @@ -19623,7 +19948,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 854, + "rank": 868, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/442924?v=4", "bio": null, @@ -19641,7 +19966,7 @@ "url": "https://github.com/api-platform/website" } ], - "rank": 855, + "rank": 869, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1866496?v=4", "bio": "Retired Gladiator / AI Enthusiast / PHP & Symfony expert / Powered by Caffeine / SSE @sezane ", @@ -19659,7 +19984,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 856, + "rank": 870, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/12457261?v=4", "bio": "Web Developer\r\nPHP - Golang - Javascript", @@ -19677,7 +20002,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 857, + "rank": 871, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6864389?v=4", "bio": null, @@ -19695,14 +20020,14 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 858, + "rank": 872, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/204451?v=4", "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 @d11n-studio", - "blog": "https://alexandre.balmes.co" + "blog": "https://alex.balmes.co" }, { "login": "pomali", @@ -19713,7 +20038,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 859, + "rank": 873, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1194439?v=4", "bio": null, @@ -19731,7 +20056,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 860, + "rank": 874, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2283090?v=4", "bio": null, @@ -19749,7 +20074,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 861, + "rank": 875, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1135425?v=4", "bio": null, @@ -19767,7 +20092,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 862, + "rank": 876, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2815664?v=4", "bio": null, @@ -19785,7 +20110,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 863, + "rank": 877, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/479917?v=4", "bio": null, @@ -19803,7 +20128,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 864, + "rank": 878, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5188832?v=4", "bio": null, @@ -19821,7 +20146,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 865, + "rank": 879, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2874965?v=4", "bio": null, @@ -19839,13 +20164,13 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 866, + "rank": 880, "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)", + "bio": null, "name": "David Flanagan", "location": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", - "company": "@RawkodeAcademy", + "company": "@CoreWeave", "blog": "https://rawkode.academy" }, { @@ -19857,7 +20182,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 867, + "rank": 881, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/548656?v=4", "bio": null, @@ -19875,7 +20200,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 868, + "rank": 882, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/144770208?v=4", "bio": "Compte département MMI - IUT de Troyes", @@ -19893,7 +20218,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 869, + "rank": 883, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/30264618?v=4", "bio": null, @@ -19911,7 +20236,7 @@ "url": "https://github.com/api-platform/json-schema" } ], - "rank": 870, + "rank": 884, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8590822?v=4", "bio": "Student at University Leipzig", @@ -19929,7 +20254,7 @@ "url": "https://github.com/dunglas/vulcain" } ], - "rank": 871, + "rank": 885, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1652160?v=4", "bio": null, @@ -19947,7 +20272,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 872, + "rank": 886, "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.", @@ -19965,7 +20290,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 873, + "rank": 887, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/11267554?v=4", "bio": "Developer at ITK Development (Aarhus Kommune)", @@ -19983,7 +20308,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 874, + "rank": 888, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/14221532?v=4", "bio": null, @@ -20001,7 +20326,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 875, + "rank": 889, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19284102?v=4", "bio": "DevOps @CleverConnect", @@ -20019,7 +20344,7 @@ "url": "https://github.com/api-platform/docker-compose-prod" } ], - "rank": 876, + "rank": 890, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1651297?v=4", "bio": null, @@ -20037,11 +20362,11 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 877, + "rank": 891, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1553083?v=4", "bio": "armless software engineer", - "name": "Roberto Lombi", + "name": null, "location": "Bologna/Italy", "company": null, "blog": "" @@ -20055,7 +20380,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 878, + "rank": 892, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/137574?v=4", "bio": null, @@ -20073,7 +20398,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 879, + "rank": 893, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8062558?v=4", "bio": null, @@ -20091,7 +20416,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 880, + "rank": 894, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2140469?v=4", "bio": null, @@ -20109,7 +20434,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 881, + "rank": 895, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5607440?v=4", "bio": "https://sad270.github.io/", @@ -20127,7 +20452,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 882, + "rank": 896, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/9380313?v=4", "bio": "Hi", @@ -20145,7 +20470,7 @@ "url": "https://github.com/api-platform/openapi" } ], - "rank": 883, + "rank": 897, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1635587?v=4", "bio": null, @@ -20163,7 +20488,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 884, + "rank": 898, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1235888?v=4", "bio": null, @@ -20181,10 +20506,10 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 885, + "rank": 899, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5504250?v=4", - "bio": "Go/Rust разработчик с 10 стажем.\r\nВ прошлом Full Stack.", + "bio": "Go/Rust разработчик с 10 стажем.\r\nВ прошлом Full Stack на React и php.", "name": "Aleksandr", "location": "Russia Moscow", "company": null, @@ -20199,7 +20524,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 886, + "rank": 900, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/6454986?v=4", "bio": "Software developer based in Zurich.", @@ -20217,7 +20542,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 887, + "rank": 901, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1470048?v=4", "bio": null, @@ -20235,7 +20560,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 888, + "rank": 902, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/4922264?v=4", "bio": null, @@ -20253,7 +20578,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 889, + "rank": 903, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2197902?v=4", "bio": null, @@ -20271,7 +20596,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 890, + "rank": 904, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5164586?v=4", "bio": null, @@ -20280,6 +20605,24 @@ "company": "Universal Units GmbH", "blog": "" }, + { + "login": "senghe", + "repos": [ + { + "repo": "core", + "contributions": 1, + "url": "https://github.com/api-platform/core" + } + ], + "rank": 905, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/2512726?v=4", + "bio": "I'm Senior PHP Developer. I like web technologies (Backend, websockets, RabbitMQ, ChromeExtensions). I'm a CleanCoder, I'm using OOP and Design Patterns.", + "name": "Marcin Kukliński", + "location": "Tarnów", + "company": "CrystalCode", + "blog": "https://gildia-developerow.pl" + }, { "login": "sergerdn", "repos": [ @@ -20289,7 +20632,7 @@ "url": "https://github.com/api-platform/create-client" } ], - "rank": 891, + "rank": 906, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/64213648?v=4", "bio": null, @@ -20298,6 +20641,24 @@ "company": null, "blog": "" }, + { + "login": "sergiuionescu", + "repos": [ + { + "repo": "json-schema", + "contributions": 1, + "url": "https://github.com/api-platform/json-schema" + } + ], + "rank": 907, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/1065939?v=4", + "bio": null, + "name": "Sergiu Ionescu", + "location": "Bucharest", + "company": null, + "blog": "" + }, { "login": "sethvargo", "repos": [ @@ -20307,7 +20668,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 892, + "rank": 908, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/408570?v=4", "bio": "Engineer", @@ -20325,7 +20686,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 893, + "rank": 909, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1188509?v=4", "bio": "Software engineer", @@ -20343,10 +20704,10 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 894, + "rank": 910, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/32362757?v=4", - "bio": "building isotope agents\r\ne/acc ", + "bio": "building isotope agents\r\ne/acc", "name": "Silvia O'Dwyer", "location": null, "company": null, @@ -20361,7 +20722,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 895, + "rank": 911, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/19673430?v=4", "bio": "hello there.", @@ -20379,12 +20740,12 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 896, + "rank": 912, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2412608?v=4", "bio": "Let me be what I wanna be", "name": "Arnaud Becher", - "location": "Saverne (France)", + "location": "Vosges du nord (France)", "company": null, "blog": "https://smknstd.github.io" }, @@ -20397,7 +20758,7 @@ "url": "https://github.com/api-platform/api-doc-parser" } ], - "rank": 897, + "rank": 913, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/48355747?v=4", "bio": null, @@ -20415,7 +20776,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 898, + "rank": 914, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5120127?v=4", "bio": null, @@ -20433,13 +20794,13 @@ "url": "https://github.com/api-platform/serializer" } ], - "rank": 899, + "rank": 915, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/8626620?v=4", "bio": null, "name": null, "location": null, - "company": null, + "company": "SensioLabs", "blog": "" }, { @@ -20451,7 +20812,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 900, + "rank": 916, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/10502887?v=4", "bio": null, @@ -20469,14 +20830,14 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 901, + "rank": 917, "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.", "name": "Ilya.Stepanov", "location": "Paris", - "company": "Unlockt.me", - "blog": "http://ilyastepanov.online/" + "company": "Kallpa Pay", + "blog": "http://ilya.is-a.dev" }, { "login": "theZieger", @@ -20487,7 +20848,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 902, + "rank": 918, "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", @@ -20497,40 +20858,22 @@ "blog": "https://hoeppner.fyi" }, { - "login": "thomas-hiron", - "repos": [ - { - "repo": "core", - "contributions": 1, - "url": "https://github.com/api-platform/core" - } - ], - "rank": 903, - "contributions": 1, - "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": "thomasglachant", + "login": "thomaschaaf", "repos": [ { - "repo": "core", + "repo": "symfony", "contributions": 1, - "url": "https://github.com/api-platform/core" + "url": "https://github.com/api-platform/symfony" } ], - "rank": 904, + "rank": 919, "contributions": 1, - "avatar_url": "https://avatars.githubusercontent.com/u/1681865?v=4", + "avatar_url": "https://avatars.githubusercontent.com/u/893393?v=4", "bio": null, - "name": "Thomas Glachant", - "location": "Lille, France", - "company": "@stadline ", - "blog": "" + "name": "Thomas Schaaf", + "location": "Braunschweig, Germany", + "company": "Komola GmbH", + "blog": "http://komola.de" }, { "login": "tony-tran", @@ -20541,7 +20884,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 905, + "rank": 920, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5413075?v=4", "bio": null, @@ -20559,7 +20902,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 906, + "rank": 921, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/637350?v=4", "bio": null, @@ -20577,7 +20920,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 907, + "rank": 922, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/588128?v=4", "bio": null, @@ -20595,7 +20938,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 908, + "rank": 923, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2133349?v=4", "bio": null, @@ -20604,6 +20947,24 @@ "company": "@mrge-group", "blog": "https://www.capagcuan.org" }, + { + "login": "tunne", + "repos": [ + { + "repo": "docs", + "contributions": 1, + "url": "https://github.com/api-platform/docs" + } + ], + "rank": 924, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/1312244?v=4", + "bio": null, + "name": "Gilles Demeyer", + "location": null, + "company": null, + "blog": "" + }, { "login": "tworzenieweb", "repos": [ @@ -20613,7 +20974,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 909, + "rank": 925, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/741378?v=4", "bio": null, @@ -20631,14 +20992,14 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 910, + "rank": 926, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2059767?v=4", "bio": null, "name": "Thilo", "location": "Germany", "company": null, - "blog": "https://xcep.net" + "blog": "https://froit.net" }, { "login": "tyx", @@ -20649,14 +21010,14 @@ "url": "https://github.com/api-platform/state" } ], - "rank": 911, + "rank": 927, "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": "" + "location": "Raiatea 🏝️", + "company": "Freelance", + "blog": "https://timbarray.dev" }, { "login": "virtualize", @@ -20667,7 +21028,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 912, + "rank": 928, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/220102?v=4", "bio": null, @@ -20676,6 +21037,24 @@ "company": null, "blog": "" }, + { + "login": "vmignot", + "repos": [ + { + "repo": "mercure", + "contributions": 1, + "url": "https://github.com/dunglas/mercure" + } + ], + "rank": 929, + "contributions": 1, + "avatar_url": "https://avatars.githubusercontent.com/u/3500102?v=4", + "bio": null, + "name": null, + "location": "Paris", + "company": null, + "blog": "" + }, { "login": "wRLSS", "repos": [ @@ -20685,10 +21064,10 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 913, + "rank": 930, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2380100?v=4", - "bio": "Occasional contributor, Solution Architect @Namecheap", + "bio": "Occasional contributor, Solution Architect @namecheap @spaceship.com", "name": "Nikita Tkalenko", "location": "Ukraine", "company": "@Namecheap", @@ -20703,7 +21082,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 914, + "rank": 931, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/56051809?v=4", "bio": null, @@ -20721,7 +21100,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 915, + "rank": 932, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/394523?v=4", "bio": null, @@ -20739,7 +21118,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 916, + "rank": 933, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1456102?v=4", "bio": null, @@ -20757,7 +21136,7 @@ "url": "https://github.com/dunglas/mercure" } ], - "rank": 917, + "rank": 934, "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 ", @@ -20775,7 +21154,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 918, + "rank": 935, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1220600?v=4", "bio": "DevOps / Software Engineer / Kubernetes CKS CKA CKAD", @@ -20793,7 +21172,7 @@ "url": "https://github.com/api-platform/api-platform" } ], - "rank": 919, + "rank": 936, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/5250708?v=4", "bio": null, @@ -20811,7 +21190,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 920, + "rank": 937, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/982291?v=4", "bio": null, @@ -20829,7 +21208,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 921, + "rank": 938, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1957048?v=4", "bio": null, @@ -20847,7 +21226,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 922, + "rank": 939, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/28672138?v=4", "bio": null, @@ -20865,7 +21244,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 923, + "rank": 940, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1160871?v=4", "bio": null, @@ -20883,7 +21262,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 924, + "rank": 941, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/619509?v=4", "bio": null, @@ -20901,7 +21280,7 @@ "url": "https://github.com/api-platform/demo" } ], - "rank": 925, + "rank": 942, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/2870859?v=4", "bio": null, @@ -20919,7 +21298,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 926, + "rank": 943, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1114453?v=4", "bio": null, @@ -20937,7 +21316,7 @@ "url": "https://github.com/api-platform/docs" } ], - "rank": 927, + "rank": 944, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/21998828?v=4", "bio": null, @@ -20955,13 +21334,13 @@ "url": "https://github.com/api-platform/metadata" } ], - "rank": 928, + "rank": 945, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/292402?v=4", - "bio": "Senior PHP/Symfony backend developer @recisio / KaraFun Group ", + "bio": "Senior PHP/Symfony backend developer", "name": "Yoann Brieux", "location": "Oignies, France ", - "company": "@recisio / KaraFun Group", + "company": null, "blog": "https://yoann.brieux.net" }, { @@ -20973,7 +21352,7 @@ "url": "https://github.com/api-platform/schema-generator" } ], - "rank": 929, + "rank": 946, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/608984?v=4", "bio": null, @@ -20991,13 +21370,13 @@ "url": "https://github.com/api-platform/json-schema" } ], - "rank": 930, + "rank": 947, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/397425?v=4", - "bio": "DevOps Engineer | Kubernetes | PHP", + "bio": "DevOps | Kubernetes | PHP", "name": "Yosh", - "location": "Netherlands", - "company": "El Zorro IT", + "location": "Sweden", + "company": null, "blog": "" }, { @@ -21009,10 +21388,10 @@ "url": "https://github.com/api-platform/laravel" } ], - "rank": 931, + "rank": 948, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/679513?v=4", - "bio": "hello", + "bio": null, "name": "ziming", "location": null, "company": null, @@ -21027,7 +21406,7 @@ "url": "https://github.com/api-platform/admin" } ], - "rank": 932, + "rank": 949, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/398739?v=4", "bio": null, @@ -21045,7 +21424,7 @@ "url": "https://github.com/api-platform/core" } ], - "rank": 933, + "rank": 950, "contributions": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7030232?v=4", "bio": null,