Skip to content

Commit

Permalink
Merge tag '2.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolineus committed Feb 19, 2024
2 parents 7fddf34 + f1df87e commit 25dab3e
Show file tree
Hide file tree
Showing 65 changed files with 15,839 additions and 1,982 deletions.
10 changes: 10 additions & 0 deletions .composer-require-checker.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"symbol-whitelist": [
"null", "true", "false",
"static", "self", "parent",
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object",
"Contao\\ManagerPlugin\\Bundle\\BundlePluginInterface",
"Contao\\ManagerPlugin\\Bundle\\Parser\\ParserInterface",
"Contao\\ManagerPlugin\\Bundle\\Config\\BundleConfig"
]
}
47 changes: 47 additions & 0 deletions .ddev/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
#ddev-generated: Automatically generated ddev .gitignore.

/**/*.example
/.dbimageBuild
/.dbimageExtra
/.ddev-docker-*.yaml
/.*downloads
/.global_commands
/.homeadditions
/.importdb*
/.sshimageBuild
/.venv
/.webimageBuild
/.webimageExtra
/apache/apache-site.conf
/commands/.gitattributes
/commands/db/mysql
/commands/host/launch
/commands/web/xdebug
/commands/web/live
/config.local.y*ml
/db_snapshots
/import-db
/import.yaml
/mutagen/mutagen.yml
/mutagen/.start-synced
/nginx_full/nginx-site.conf
/postgres/postgresql.conf
/providers/acquia.yaml
/providers/lagoon.yaml
/providers/platform.yaml
/providers/upsun.yaml
/sequelpro.spf
/settings/settings.ddev.py
/traefik/config/hofff-contao-navigation.yaml
/traefik/certs/hofff-contao-navigation.crt
/traefik/certs/hofff-contao-navigation.key
/xhprof/xhprof_prepend.php
/**/README.*
!/backup
/contao/vendor
/contao/assets
/contao/public
/contao/bin
/contao/system
/contao/var
/contao/.env.local
Binary file added .ddev/backup/database.sql.gz
Binary file not shown.
7 changes: 7 additions & 0 deletions .ddev/commands/host/console
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

## Description: Delegates commands to the contao console
## Usage: console
## Example: "ddev console contao:migrate"

ddev exec vendor/bin/contao-console "$@"
7 changes: 7 additions & 0 deletions .ddev/commands/host/migrate
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

## Description: Executes Contao database migration
## Usage: migrate
## Example: "ddev migrate --no-backup"

ddev exec vendor/bin/contao-console contao:migrate "$@"
24 changes: 24 additions & 0 deletions .ddev/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: hofff-contao-navigation
type: php
docroot: ".ddev/contao/public"
php_version: "8.1"
webserver_type: apache-fpm
router_http_port: "80"
router_https_port: "443"
xdebug_enabled: false
additional_hostnames: []
additional_fqdns: []
database:
type: mariadb
version: "10.4"
nfs_mount_enabled: false
mutagen_enabled: false
use_dns_when_possible: true
composer_root: ".ddev/contao"
composer_version: "2"
web_environment: []
nodejs_version: "16"
timezone: Europe/Berlin
working_dir: {
web: "/var/www/html/.ddev/contao"
}
2 changes: 2 additions & 0 deletions .ddev/contao/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
APP_ENV=dev
DATABASE_URL="mysql://db:db@db:3306/db"
42 changes: 42 additions & 0 deletions .ddev/contao/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"name": "contao/managed-edition",
"description": "Contao Managed Edition",
"license": "LGPL-3.0-or-later",
"type": "project",
"require": {
"contao/conflicts": "@dev",
"contao/manager-bundle": "^5.3",
"hofff/contao-navigation": "@dev"
},
"conflict": {
"contao-components/installer": "<1.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"contao-community-alliance/composer-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"contao-component-dir": "assets"
},
"scripts": {
"post-install-cmd": [
"@php vendor/bin/contao-setup"
],
"post-update-cmd": [
"@php vendor/bin/contao-setup"
]
},
"repositories": [
{
"type": "path",
"url": "../.."
}
]
}
Loading

0 comments on commit 25dab3e

Please sign in to comment.