Skip to content

Commit

Permalink
Merge tag '3.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolineus committed Mar 29, 2023
2 parents 38f884d + f78948c commit 3cd7a03
Show file tree
Hide file tree
Showing 63 changed files with 15,010 additions and 1,968 deletions.
21 changes: 21 additions & 0 deletions .composer-require-checker.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"symbol-whitelist": [
"null", "true", "false",
"static", "self", "parent",
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object",
"array_insert",
"Contao\\ManagerPlugin\\Bundle\\BundlePluginInterface",
"Contao\\ManagerPlugin\\Bundle\\Config\\BundleConfig",
"Contao\\ManagerPlugin\\Bundle\\Parser\\ParserInterface",
"Contao\\ManagerPlugin\\Config\\ContainerBuilder",
"Contao\\ManagerPlugin\\Config\\ExtensionPluginInterface",
"Contao\\ManagerPlugin\\Dependency\\DependentPluginInterface",
"Contao\\CalendarEventsModel",
"Contao\\CalendarModel",
"Contao\\FaqCategoryModel",
"Contao\\FaqModel",
"Contao\\NewsArchiveModel",
"Contao\\NewsModel",
"TL_ERROR"
]
}
33 changes: 33 additions & 0 deletions .ddev/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# You can remove the above line if you want to edit and maintain this file yourself.

/**/*.example
/.dbimageBuild
/.dbimageExtra
/.ddev-docker-*.yaml
/.*downloads
/.global_commands
/.homeadditions
/.importdb*
/.sshimageBuild
/.webimageBuild
/.webimageExtra
/apache/apache-site.conf
/commands/.gitattributes
/commands/db/mysql
/commands/host/launch
/commands/web/xdebug
/commands/web/live
/config.*.y*ml
/import-db
/import.yaml
/mutagen/mutagen.yml
/mutagen/.start-synced
/nginx_full/nginx-site.conf
/postgres/postgresql.conf
/providers/platform.yaml
/sequelpro.spf
/traefik/config/contao-i18n.yaml
/traefik/certs/contao-i18n.crt
/traefik/certs/contao-i18n.key
/xhprof/xhprof_prepend.php
/**/README.*
25 changes: 25 additions & 0 deletions .ddev/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: contao-i18n
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
omit_containers: [dba]
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"
8 changes: 8 additions & 0 deletions .ddev/contao/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*
!/composer.json
!/composer.lock

!.env
!/config
/config/*
!/config/config.yaml
48 changes: 48 additions & 0 deletions .ddev/contao/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "contao/managed-edition",
"description": "Contao Managed Edition",
"license": "LGPL-3.0-or-later",
"type": "project",
"require": {
"contao/calendar-bundle": "^4.13",
"contao/comments-bundle": "^4.13",
"contao/conflicts": "@dev",
"contao/faq-bundle": "^4.13",
"contao/listing-bundle": "^4.13",
"contao/manager-bundle": "4.13.*",
"contao/news-bundle": "^4.13",
"contao/newsletter-bundle": "^4.13",
"netzmacht/contao-i18n": "*"
},
"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": "../.."
}
]
}

0 comments on commit 3cd7a03

Please sign in to comment.