Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/contentful/the-example-app.php
Example app for Contentful in PHP
https://github.com/contentful/the-example-app.php
contentful docker heroku php php72 symfony symfony4
Last synced: about 1 month ago
JSON representation
Example app for Contentful in PHP
- Host: GitHub
- URL: https://github.com/contentful/the-example-app.php
- Owner: contentful
- License: mit
- Archived: true
- Created: 2017-11-14T09:50:31.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-18T09:37:25.000Z (almost 2 years ago)
- Last Synced: 2024-09-26T18:21:49.440Z (about 2 months ago)
- Topics: contentful, docker, heroku, php, php72, symfony, symfony4
- Language: PHP
- Homepage: https://the-example-app-php.contentful.com
- Size: 875 KB
- Stars: 18
- Watchers: 32
- Forks: 22
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> **Note**: This repo is no longer officially maintained as of Jan, 2023.
> Feel free to use it, fork it and patch it for your own needs.## The PHP example app
[![CircleCI](https://img.shields.io/circleci/project/github/contentful/the-example-app.php.svg)](https://circleci.com/gh/contentful/the-example-app.php)
The PHP example app teaches the very basics of how to work with Contentful:
- consume content from the Contentful Delivery and Preview APIs
- model content
- edit content through the Contentful web appThe app demonstrates how decoupling content from its presentation enables greater flexibility and facilitates shipping higher quality software more quickly.
You can see a hosted version of `The PHP example app` on Heroku.
## What is Contentful?
[Contentful](https://www.contentful.com) provides a content infrastructure for digital teams to power content in websites, apps, and devices. Unlike a CMS, Contentful was built to integrate with the modern software stack. It offers a central hub for structured content, powerful management and delivery APIs, and a customizable web app that enable developers and content creators to ship digital products faster.## Requirements
* PHP 7.2
* Git
* Contentful CLI (only for write access)Without any changes, this app is connected to a Contentful space with read-only access. To experience the full end-to-end Contentful experience, you need to connect the app to a Contentful space with read _and_ write access. This enables you to see how content editing in the Contentful web app works and how content changes propagate to this app.
## Common setup
Clone the repo and install the dependencies.
``` bash
git clone https://github.com/contentful/the-example-app.php.git
`````` bash
composer install
```## Steps for read-only access
To start the local server, run the following:
``` bash
php bin/console server:run
```Open [http://localhost:8000](http://localhost:8000) and take a look around.
## Steps for read and write access (recommended)
Step 1: Install the [Contentful CLI](https://www.npmjs.com/package/contentful-cli).
Step 2: Login to Contentful through the CLI. It will help you to create a [free account](https://www.contentful.com/sign-up/) if you don't have one already.
``` bash
contentful login
```Step 3: Create a new space.
``` bash
contentful space create --name 'My space for the example app'
```Step 4: Seed the new space with the content model. Replace the `SPACE_ID` with the id returned from the create command executed in step 3.
``` bash
contentful space seed -s '' -t the-example-app
```Step 5: Head to the Contentful web app's API section and grab `SPACE_ID`, `DELIVERY_ACCESS_TOKEN`, `PREVIEW_ACCESS_TOKEN`.
Step 6: Open `.env` and inject your credentials so it looks like this
```
// ...
CONTENTFUL_SPACE_ID=
CONTENTFUL_DELIVERY_TOKEN=
CONTENTFUL_PREVIEW_TOKEN=
```Step 7: To start the local server, run the following.
``` bash
php bin/console server:run
```
Final Step:Open [http://localhost:8000/?editorial_features=enabled](http://localhost:8000/?editorial_features=enabled) and take a look around. This URL flag adds an “Edit” button in the app on every editable piece of content which will take you back to Contentful web app where you can make changes. It also adds “Draft” and “Pending Changes” status indicators to all content if relevant.
## Use Docker
You can also run this app as a Docker container:Step 1: Clone the repo
```bash
git clone https://github.com/contentful/the-example-app.php.git
```Step 2: Build the Docker images
```bash
docker-compose build
```Step 3: Run the Docker containers locally:
```bash
docker-compose up
```If you created your own Contentful space, you can use it by overriding the following environment variables in the `docker-compose` file:
```bash
environment:
- CONTENTFUL_SPACE_ID=
- CONTENTFUL_DELIVERY_TOKEN=
- CONTENTFUL_PREVIEW_TOKEN=
```## Deploy to Heroku
You can also deploy this app to Heroku:
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)