Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/backdrop/files/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name: 'app'

# The type key specifies the language and version for your application.
type: 'php:7.4'
type: 'php:8.1'

# On PHP, there are multiple build flavors available. Pretty much everyone
# except Drupal 7 and Backdrop users will want the composer flavor.
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal8-multisite/files/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name: 'drupal'

# The runtime the application uses.
type: 'php:7.4'
type: 'php:8.1'

dependencies:
php:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal8-opigno/files/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name: 'drupal'

# The runtime the application uses.
type: 'php:7.4'
type: 'php:8.1'

dependencies:
php:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal8/files/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name: 'drupal'

# The runtime the application uses.
type: 'php:7.4'
type: 'php:8.1'

dependencies:
php:
Expand Down
2 changes: 1 addition & 1 deletion templates/gatsby-drupal/files/drupal/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name: 'drupal'

# The runtime the application uses.
type: 'php:7.4'
type: 'php:8.1'

dependencies:
php:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name: wordpress

# The runtime the application uses.
type: "php:7.4"
type: 'php:8.1'

# Configuration of the build of the application.
build:
Expand Down
8 changes: 5 additions & 3 deletions templates/nextcloud/files/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name: app

# The runtime the application uses.
type: "php:7.4"
type: 'php:8.1'

runtime:
extensions:
Expand Down Expand Up @@ -109,8 +109,10 @@ crons:
# Run NextClouds's cron tasks every 5 minutes.
cron:
spec: '*/5 * * * *'
commands: 'cd src ; php cron.php'
commands:
start: 'cd src ; php cron.php'
preview:
spec: '*/10 * * * *'
commands: './occ preview:pre-generate'
commands:
start: './occ preview:pre-generate'

5 changes: 3 additions & 2 deletions templates/pimcore/files/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name: app

# The runtime the application uses.
type: php:7.4
type: 'php:8.1'

# The relationships of the application with services or other applications.
#
Expand Down Expand Up @@ -104,7 +104,8 @@ hooks:
crons:
pimcore_cron:
spec: "*/5 * * * *"
commands: "bin/console maintenance"
commands:
start: "bin/console maintenance"

source:
operations:
Expand Down
5 changes: 3 additions & 2 deletions templates/typo3/files/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name: app

# The runtime the application uses.
type: php:7.4
type: 'php:8.1'

dependencies:
php:
Expand Down Expand Up @@ -211,7 +211,8 @@ crons:
# Run TYPO3's Scheduler tasks every 5 minutes.
typo3:
spec: "*/5 * * * *"
commands: "vendor/bin/typo3 scheduler:run"
commands:
start: "vendor/bin/typo3 scheduler:run"

source:
operations:
Expand Down
2 changes: 1 addition & 1 deletion templates/wordpress-composer/files/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name: app

# The runtime the application uses.
type: "php:7.4"
type: 'php:8.1'

# Configuration of the build of the application.
build:
Expand Down