Skip to content

Commit 7420304

Browse files
committed
Add September 2024 update
+ Minor style adjustments
1 parent 33ced47 commit 7420304

File tree

3 files changed

+53
-4
lines changed

3 files changed

+53
-4
lines changed

app/src/Bundles/AtomFeedGeneratorBundle/AtomFeedGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected function fetchEntry(Configuration $data, array $authors): Entry
8686
$data->get('title'),
8787
$baseUrl . $data->get('url'),
8888
$authors,
89-
$data->get('blocks.content'),
89+
$data->get('blocks.content') ?? '',
9090
new \DateTimeImmutable($data->get('published_at')),
9191
);
9292
}

assets/css/app.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717

1818
h1, h2, h3, h4 {
19-
@apply mb-6 mt-6 text-zinc-800;
19+
@apply mb-6 mt-12 text-zinc-800;
2020
}
2121

2222
h1 {
@@ -36,15 +36,15 @@
3636
}
3737

3838
p, ol, ul, code {
39-
@apply mb-8;
39+
@apply mb-5;
4040
}
4141

4242
p, li {
4343
@apply font-normal text-zinc-800 text-base leading-relaxed;
4444
}
4545

4646
ul {
47-
@apply list-disc list-outside mb-4 ml-5;
47+
@apply list-disc list-outside mb-5 ml-5;
4848
}
4949

5050
li > ul {
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: PHP Foundation Update, September 2024
3+
layout: post
4+
tags:
5+
- update
6+
author:
7+
name: Roman Pronskiy
8+
url: https://twitter.com/pronskiy
9+
published_at: 12 September 2024
10+
---
11+
12+
```<?= 'Hello world!';```
13+
14+
Here are some updates we’d like to share with you.
15+
16+
## Generics Research Progress
17+
18+
One of our most anticipated projects is the research into generics for PHP. In August, we published a [comprehensive report on the state of generics and collections in PHP](https://thephp.foundation/blog/2024/08/19/state-of-generics-and-collections/). This research is a crucial step towards potentially implementing generics in future PHP. The further direction has not been decided yet, so we encourage the PHP community to review the report and provide feedback.
19+
20+
## Welcoming Ben Marks as Official PHP Foundation Ambassador
21+
22+
We are thrilled to announce that [Ben Marks](https://www.linkedin.com/in/bhmarks/) has stepped up as the official PHP Foundation ambassador. Ben is Director Global Market Development at Shopware, and was a co-Founder of the Magento Association.
23+
24+
In this role, Ben will:
25+
26+
* Serve as a liaison between the Foundation and the broader PHP community.
27+
* Represent the Foundation at conferences and events.
28+
* Help communicate our initiatives and gather feedback from the community.
29+
30+
We're confident that Ben's contributions will strengthen our connections within the PHP world and help us better serve the community's needs.
31+
32+
Please give Ben a warm welcome\!
33+
34+
## Website Updates in Progress
35+
36+
We’d like to make sure our ***[thephp.foundation](https://thephp.foundation)*** website provides clear information about what we do, how sponsors can support the foundation, and what are the benefits on top of supporting the PHP language maintenance and development. Please share what you think is missing on the website or is not clearly described. Roast the website so we can improve\!
37+
38+
## Shout-out to our Sponsors
39+
40+
We want to extend a big thank you to all the individuals and organizations supporting The PHP Foundation. This time, we’d like to give special recognition to [Sovereign Tech Fund](https://www.sovereigntechfund.de/) for their incredible investment this year. And a big thank you to [Cybozu](https://cybozu.co.jp/en/), [Les-Tilleuls.coop](http://Les-Tilleuls.coop), [pixiv Inc.](https://www.pixiv.net/en/), [Mercari Inc.](https://www.mercari.com/), [Aternos GmbH](https://aternos.gmbh/en/), [Ardennes-étape](https://en.ardennes-etape.be/), [CH Studio](https://chstudio.fr/), and [SPY](https://spysystem.dk/).
41+
42+
We’re also deeply grateful to our major sponsors for their continued commitment: [Automattic](https://automattic.com/), [JetBrains](https://www.jetbrains.com/), [Private Packagist](https://packagist.com/), [Craft CMS](https://craftcms.com/), [Zend by Perforce](https://www.zend.com/), [Tideways](https://tideways.com/), and [Symfony](https://symfony.com/).
43+
44+
Thank you so much to [everyone who sponsored](https://thephp.foundation/#sponsors) – the PHP Foundation is all of us\!
45+
46+
<br>
47+
48+
That’s all for today. Follow us on X/Twitter [@ThePHPF](https://twitter.com/thephpf), Mastodon [phpc.social/@thephpf](https://phpc.social/@thephpf), and [LinkedIn](https://www.linkedin.com/company/phpfoundation/) to get the latest updates from the PHP Foundation.
49+
💜🐘

0 commit comments

Comments
 (0)