diff --git a/pwa/api/contributorsRank.ts b/pwa/api/contributorsRank.ts index 117e6a9f..5528be91 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/app/(con)/[locale]/con/[edition]/conferences/ConferencesPage.tsx b/pwa/app/(con)/[locale]/con/[edition]/conferences/ConferencesPage.tsx index 8e6dd5d1..c045ab31 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 668372ea..60704650 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 9c7daea2..52ca9533 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 ec1e87e4..b76ece02 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 b4358216..a04865f3 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 39771633..30376676 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 f750ebe5..30cdeb52 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 42b87477..b5f0b78c 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 31a4576a..1f44f704 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 8db2585f..e4bcd533 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 58f2bbff..e1a11439 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 c8775df6..0c3d6bce 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 829202df..9dfaebc8 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 4203a611..05c6c0b8 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 bafa3cee..e7b4b423 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 08f61f49..6930d40f 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 7a584328..d197cb5a 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 1b896a3c..c842835f 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 9acc8372..e209d532 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 00000000..d3cdbb5d --- /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 8fbca5e8..d0342068 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 a25078e8..821e1809 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 e06c8688..9c547bdf 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 9628494b..f8ff3745 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 7b0d969b..731b7d94 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 d21c1df2..d6da56f7 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 ac7d76ac..dc3a12a5 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 60830efe..9115bb63 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 d3f4a7ad..71b661e0 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 61593530..06715b8d 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 00000000..cc369b8c --- /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 ee70a574..e5ed50f9 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/data/contributors.json b/pwa/data/contributors.json index 04208904..56b3ad32 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, diff --git a/pwa/i18n/dictionaries/en.json b/pwa/i18n/dictionaries/en.json index 9dbb816a..2e588880 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 90c35b22..2647bc3e 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 00000000..f40c180e Binary files /dev/null and b/pwa/public/images/con/2026/partners/emagma.png differ 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 00000000..6ac23b8e Binary files /dev/null and b/pwa/public/images/con/2026/partners/france-tv.png differ diff --git a/pwa/public/images/con/2026/partners/human-coders.png b/pwa/public/images/con/2026/partners/human-coders.png new file mode 100644 index 00000000..07ab39ee Binary files /dev/null and b/pwa/public/images/con/2026/partners/human-coders.png differ