This API provides current sponsorship data for the DDEV project.
Original path (backward compatible)
// Preferred: use the ddev.com short URL
fetch('https://ddev.com/s/sponsorship-data.json')
.then(response => response.json())
.then(data => console.log(data));
// Existing consumers - no changes needed.
fetch('https://ddev.github.io/sponsorship-data/data/all-sponsorships.json')
.then(response => response.json())
.then(data => console.log(data));