-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
65 changed files
with
15,839 additions
and
1,982 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": "../.." | ||
} | ||
] | ||
} |
Oops, something went wrong.