Skip to content

Commit c127a04

Browse files
authored
fix(distribution): replace dead links (#1793)
1 parent 6626010 commit c127a04

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

distribution/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ API Platform uses these model classes to expose and document a web API having a
5050
* and basically everything needed to build modern APIs.
5151

5252
One more thing, before we start: as the API Platform distribution includes [the Symfony framework](https://symfony.com),
53-
it is compatible with most [Symfony bundles](https://flex.symfony.com)
53+
it is compatible with most [Symfony bundles](https://symfony.com/bundles)
5454
(plugins) and benefits from [the numerous extension points](../core/extending.md) provided by this rock-solid foundation (events, Dependency Injection Container...).
5555
Adding features like custom or service-oriented API endpoints, JWT or OAuth authentication, HTTP caching, mail sending or
5656
asynchronous jobs to your APIs is straightforward.
@@ -59,7 +59,7 @@ asynchronous jobs to your APIs is straightforward.
5959

6060
### Using the API Platform Distribution (Recommended)
6161

62-
Start by [downloading the API Platform distribution](https://github.com/api-platform/api-platform/releases/latest), or [generate a GitHub repository from the template we provide](https://github.com/api-platform/api-platform/generate).
62+
Start by [downloading the API Platform distribution](https://github.com/api-platform/api-platform/releases/latest), or [generate a GitHub repository from the template we provide](https://github.com/new?template_name=api-platform&template_owner=api-platform).
6363
You will add your own code and configuration inside this skeleton.
6464

6565
**Note**: Avoid downloading the `.zip` archive, as it may cause potential [permission](https://github.com/api-platform/api-platform/issues/319#issuecomment-307037562) [issues](https://github.com/api-platform/api-platform/issues/777#issuecomment-412515342), prefer the `.tar.gz` archive.
@@ -450,7 +450,7 @@ docker compose exec php \
450450
bin/console make:entity --api-resource
451451
```
452452

453-
Doctrine's [annotations](https://www.doctrine-project.org/projects/doctrine-orm/en/latest/reference/annotations-reference.html) map these entities to tables in the database.
453+
Doctrine's [attributes](https://www.doctrine-project.org/projects/doctrine-orm/en/latest/reference/attributes-reference.html) map these entities to tables in the database.
454454
Mapping through [attributes](https://www.doctrine-project.org/projects/doctrine-orm/en/latest/reference/attributes-reference.html) is also supported, if you prefer those.
455455
Both methods are convenient as they allow grouping the code and the configuration but, if you want to decouple classes from their metadata, you can switch to XML or YAML mappings.
456456
They are supported as well.
@@ -722,7 +722,7 @@ You can also try things a bit more complex:
722722
```
723723

724724
The GraphQL implementation supports [queries](https://graphql.org/learn/queries/), [mutations](https://graphql.org/learn/queries/#mutations),
725-
[100% of the Relay server specification](https://facebook.github.io/relay/docs/en/graphql-server-specification.html), pagination,
725+
[100% of the Relay server specification](https://relay.dev/docs/guides/graphql-server-specification/), pagination,
726726
[filters](../core/filters.md) and [access control rules](../core/security.md).
727727
You can use it with the popular [RelayJS](https://facebook.github.io/relay/) and [Apollo](https://www.apollographql.com/docs/react/)
728728
clients.

0 commit comments

Comments
 (0)