Skip to content

Commit a3d1dff

Browse files
committed
✨ inital commit
0 parents  commit a3d1dff

23 files changed

Lines changed: 9561 additions & 0 deletions

.ddev/config.yaml

Lines changed: 293 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,293 @@
1+
name: github-php-compatibility-checker
2+
type: php
3+
docroot: public
4+
php_version: "8.5"
5+
webserver_type: nginx-fpm
6+
xdebug_enabled: false
7+
additional_hostnames: []
8+
additional_fqdns: []
9+
database:
10+
type: mariadb
11+
version: "10.11"
12+
use_dns_when_possible: true
13+
composer_version: "2"
14+
web_environment: []
15+
corepack_enable: false
16+
17+
# Key features of DDEV's config.yaml:
18+
19+
# name: <projectname> # Name of the project, automatically provides
20+
# http://projectname.ddev.site and https://projectname.ddev.site
21+
# If the name is omitted, the project will take the name of the enclosing directory,
22+
# which is useful if you want to have a copy of the project side by side with this one.
23+
24+
# type: <projecttype> # backdrop, cakephp, craftcms, drupal, drupal6, drupal7, drupal8, drupal9, drupal10, drupal11, generic, laravel, magento, magento2, php, shopware6, silverstripe, symfony, typo3, wordpress
25+
# See https://docs.ddev.com/en/stable/users/quickstart/ for more
26+
# information on the different project types
27+
28+
# docroot: <relative_path> # Relative path to the directory containing index.php.
29+
30+
# php_version: "8.3" # PHP version to use, "5.6" through "8.5"
31+
32+
# You can explicitly specify the webimage but this
33+
# is not recommended, as the images are often closely tied to DDEV's' behavior,
34+
# so this can break upgrades.
35+
36+
# webimage: <docker_image>
37+
# It’s unusual to change this option, and we don’t recommend it without Docker experience and a good reason.
38+
# Typically, this means additions to the existing web image using a .ddev/web-build/Dockerfile.*
39+
40+
# database:
41+
# type: <dbtype> # mysql, mariadb, postgres
42+
# version: <version> # database version, like "10.11" or "8.0"
43+
# MariaDB versions can be 5.5-10.8, 10.11, 11.4, 11.8
44+
# MySQL versions can be 5.5-8.0, 8.4
45+
# PostgreSQL versions can be 9-18
46+
47+
# router_http_port: <port> # Port to be used for http (defaults to global configuration, usually 80)
48+
# router_https_port: <port> # Port for https (defaults to global configuration, usually 443)
49+
50+
# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart"
51+
# Note that for most people the commands
52+
# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better,
53+
# as leaving Xdebug enabled all the time is a big performance hit.
54+
55+
# xhgui_http_port: "8143"
56+
# xhgui_https_port: "8142"
57+
# The XHGui ports can be changed from the default 8143 and 8142
58+
# Very rarely used
59+
60+
# host_xhgui_port: "8142"
61+
# Can be used to change the host binding port of the XHGui
62+
# application. Rarely used; only when port conflict and
63+
# bind_all_ports is used (normally with router disabled)
64+
65+
# xhprof_mode: [prepend|xhgui|global]
66+
# Set to "xhgui" to enable XHGui features
67+
# "xhgui" will become default in a future major release
68+
69+
# webserver_type: nginx-fpm, apache-fpm, generic
70+
71+
# timezone: Europe/Berlin
72+
# If timezone is unset, DDEV will attempt to derive it from the host system timezone
73+
# using the $TZ environment variable or the /etc/localtime symlink.
74+
# This is the timezone used in the containers and by PHP;
75+
# it can be set to any valid timezone,
76+
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
77+
# For example Europe/Dublin or MST7MDT
78+
79+
# composer_root: <relative_path>
80+
# Relative path to the Composer root directory from the project root. This is
81+
# the directory which contains the composer.json and where all Composer related
82+
# commands are executed.
83+
84+
# composer_version: "2"
85+
# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1
86+
# to use the latest major version available at the time your container is built.
87+
# It is also possible to use each other Composer version channel. This includes:
88+
# - 2.2 (latest Composer LTS version)
89+
# - stable
90+
# - preview
91+
# - snapshot
92+
# Alternatively, an explicit Composer version may be specified, for example "2.2.18".
93+
# To reinstall Composer after the image was built, run "ddev debug rebuild".
94+
95+
# nodejs_version: "22"
96+
# change from the default system Node.js version to any other version.
97+
# See https://docs.ddev.com/en/stable/users/configuration/config/#nodejs_version for more information
98+
# and https://www.npmjs.com/package/n#specifying-nodejs-versions for the full documentation,
99+
# Note that using of 'ddev nvm' is discouraged because "nodejs_version" is much easier to use,
100+
# can specify any version, and is more robust than using 'nvm'.
101+
102+
# corepack_enable: false
103+
# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm
104+
105+
# additional_hostnames:
106+
# - somename
107+
# - someothername
108+
# would provide http and https URLs for "somename.ddev.site"
109+
# and "someothername.ddev.site".
110+
111+
# additional_fqdns:
112+
# - example.com
113+
# - sub1.example.com
114+
# would provide http and https URLs for "example.com" and "sub1.example.com"
115+
# Please take care with this because it can cause great confusion.
116+
117+
# upload_dirs: "custom/upload/dir"
118+
#
119+
# upload_dirs:
120+
# - custom/upload/dir
121+
# - ../private
122+
#
123+
# would set the destination paths for ddev import-files to <docroot>/custom/upload/dir
124+
# When Mutagen is enabled this path is bind-mounted so that all the files
125+
# in the upload_dirs don't have to be synced into Mutagen.
126+
127+
# disable_upload_dirs_warning: false
128+
# If true, turns off the normal warning that says
129+
# "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set"
130+
131+
# ddev_version_constraint: ""
132+
# Example:
133+
# ddev_version_constraint: ">= 1.24.8"
134+
# This will enforce that the running ddev version is within this constraint.
135+
# See https://github.com/Masterminds/semver#checking-version-constraints for
136+
# supported constraint formats
137+
138+
# working_dir:
139+
# web: /var/www/html
140+
# db: /home
141+
# would set the default working directory for the web and db services.
142+
# These values specify the destination directory for ddev ssh and the
143+
# directory in which commands passed into ddev exec are run.
144+
145+
omit_containers: [db]
146+
# Currently only these containers are supported. Some containers can also be
147+
# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit
148+
# the "db" container, several standard features of DDEV that access the
149+
# database container will be unusable. In the global configuration it is also
150+
# possible to omit ddev-router, but not here.
151+
152+
# performance_mode: "global"
153+
# DDEV offers performance optimization strategies to improve the filesystem
154+
# performance depending on your host system. Should be configured globally.
155+
#
156+
# If set, will override the global config. Possible values are:
157+
# - "global": uses the value from the global config.
158+
# - "none": disables performance optimization for this project.
159+
# - "mutagen": enables Mutagen for this project.
160+
# - "nfs": enables NFS for this project.
161+
#
162+
# See https://docs.ddev.com/en/stable/users/install/performance/#nfs
163+
# See https://docs.ddev.com/en/stable/users/install/performance/#mutagen
164+
165+
# fail_on_hook_fail: False
166+
# Decide whether 'ddev start' should be interrupted by a failing hook
167+
168+
# host_https_port: "59002"
169+
# The host port binding for https can be explicitly specified. It is
170+
# dynamic unless otherwise specified.
171+
# This is not used by most people, most people use the *router* instead
172+
# of the localhost port.
173+
174+
# host_webserver_port: "59001"
175+
# The host port binding for the ddev-webserver can be explicitly specified. It is
176+
# dynamic unless otherwise specified.
177+
# This is not used by most people, most people use the *router* instead
178+
# of the localhost port.
179+
180+
# host_db_port: "59002"
181+
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
182+
# unless explicitly specified.
183+
184+
# mailpit_http_port: "8025"
185+
# mailpit_https_port: "8026"
186+
# The Mailpit ports can be changed from the default 8025 and 8026
187+
188+
# host_mailpit_port: "8025"
189+
# The mailpit port is not normally bound on the host at all, instead being routed
190+
# through ddev-router, but it can be bound directly to localhost if specified here.
191+
192+
# webimage_extra_packages: [php7.4-tidy, php-bcmath]
193+
# Extra Debian packages that are needed in the webimage can be added here
194+
195+
# dbimage_extra_packages: [telnet,netcat]
196+
# Extra Debian packages that are needed in the dbimage can be added here
197+
198+
# use_dns_when_possible: true
199+
# If the host has internet access and the domain configured can
200+
# successfully be looked up, DNS will be used for hostname resolution
201+
# instead of editing /etc/hosts
202+
# Defaults to true
203+
204+
# project_tld: ddev.site
205+
# The top-level domain used for project URLs
206+
# The default "ddev.site" allows DNS lookup via a wildcard
207+
# If you prefer you can change this to "ddev.local" to preserve
208+
# pre-v1.9 behavior.
209+
210+
# ngrok_args: --basic-auth username:pass1234
211+
# Provide extra flags to the "ngrok http" command, see
212+
# https://ngrok.com/docs/agent/config/v3/#agent-configuration or run "ngrok http -h"
213+
214+
# disable_settings_management: false
215+
# If true, DDEV will not create CMS-specific settings files like
216+
# Drupal's settings.php/settings.ddev.php or TYPO3's additional.php
217+
# In this case the user must provide all such settings.
218+
219+
# You can inject environment variables into the web container with:
220+
# web_environment:
221+
# - SOMEENV=somevalue
222+
# - SOMEOTHERENV=someothervalue
223+
224+
# no_project_mount: false
225+
# (Experimental) If true, DDEV will not mount the project into the web container;
226+
# the user is responsible for mounting it manually or via a script.
227+
# This is to enable experimentation with alternate file mounting strategies.
228+
# For advanced users only!
229+
230+
# bind_all_interfaces: false
231+
# If true, host ports will be bound on all network interfaces,
232+
# not the localhost interface only. This means that ports
233+
# will be available on the local network if the host firewall
234+
# allows it.
235+
236+
# default_container_timeout: 120
237+
# The default time that DDEV waits for all containers to become ready can be increased from
238+
# the default 120. This helps in importing huge databases, for example.
239+
240+
#web_extra_exposed_ports:
241+
#- name: nodejs
242+
# container_port: 3000
243+
# http_port: 2999
244+
# https_port: 3000
245+
#- name: something
246+
# container_port: 4000
247+
# https_port: 4000
248+
# http_port: 3999
249+
# Allows a set of extra ports to be exposed via ddev-router
250+
# Fill in all three fields even if you don’t intend to use the https_port!
251+
# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start.
252+
#
253+
# The port behavior on the ddev-webserver must be arranged separately, for example
254+
# using web_extra_daemons.
255+
# For example, with a web app on port 3000 inside the container, this config would
256+
# expose that web app on https://<project>.ddev.site:9999 and http://<project>.ddev.site:9998
257+
# web_extra_exposed_ports:
258+
# - name: myapp
259+
# container_port: 3000
260+
# http_port: 9998
261+
# https_port: 9999
262+
263+
#web_extra_daemons:
264+
#- name: "http-1"
265+
# command: "/var/www/html/node_modules/.bin/http-server -p 3000"
266+
# directory: /var/www/html
267+
#- name: "http-2"
268+
# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000"
269+
# directory: /var/www/html
270+
271+
# override_config: false
272+
# By default, config.*.yaml files are *merged* into the configuration
273+
# But this means that some things can't be overridden
274+
# For example, if you have 'use_dns_when_possible: true'' you can't override it with a merge
275+
# and you can't erase existing hooks or all environment variables.
276+
# However, with "override_config: true" in a particular config.*.yaml file,
277+
# 'use_dns_when_possible: false' can override the existing values, and
278+
# hooks:
279+
# post-start: []
280+
# or
281+
# web_environment: []
282+
# or
283+
# additional_hostnames: []
284+
# can have their intended affect. 'override_config' affects only behavior of the
285+
# config.*.yaml file it exists in.
286+
287+
# Many DDEV commands can be extended to run tasks before or after the
288+
# DDEV command is executed, for example "post-start", "post-import-db",
289+
# "pre-composer", "post-composer"
290+
# See https://docs.ddev.com/en/stable/users/extend/custom-commands/ for more
291+
# information on the commands that can be extended and the tasks you can define
292+
# for them. Example:
293+
#hooks:
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#ddev-generated
2+
-----BEGIN CERTIFICATE-----
3+
MIIEnzCCAwegAwIBAgIQJTE2VxcsWlqztqCR32HtxTANBgkqhkiG9w0BAQsFADB3
4+
MR4wHAYDVQQKExVta2NlcnQgZGV2ZWxvcG1lbnQgQ0ExJjAkBgNVBAsMHWF1cy1u
5+
Yi0xNzVcbS52b2dlbEBhdXMtbmItMTc1MS0wKwYDVQQDDCRta2NlcnQgYXVzLW5i
6+
LTE3NVxtLnZvZ2VsQGF1cy1uYi0xNzUwHhcNMjUxMTI3MDk1OTM0WhcNMjgwMjI3
7+
MDk1OTM0WjBDMScwJQYDVQQKEx5ta2NlcnQgZGV2ZWxvcG1lbnQgY2VydGlmaWNh
8+
dGUxGDAWBgNVBAsMD3VzZXJAYXVzLW5iLTE3NTCCASIwDQYJKoZIhvcNAQEBBQAD
9+
ggEPADCCAQoCggEBANszBRmy0jQ29pNwZG2YYpFWIKINRTnlrVfFl9709E+DscZ8
10+
JhRlveHa1dJxw1Gkm7NApU5VMKI6TExNWRSYjbs+IsAc8pyU2Nz3BYFIiHxI4XFd
11+
iOuL9V8h7UEulyLPzl9Nslbc1BBIVnstyUnrCbF1ApncOuS0afzDDFxNz8OgfQqt
12+
fi/wwIzB7jBro/UI4wfUtQWIkfa891wNbg1iBFFBNwYzE7HJ2AmgD/U27ERuBs9T
13+
bMQUSl8sL9d2cXixAUeUpYYw8g2bONfa2vvzEFy4h2WmC/S5HhDjRYUYygZD+aZ2
14+
xeTfVpQ6K0UQkHT+mCUgWJX6dYfG163VWXRZ1dECAwEAAaOB2jCB1zAOBgNVHQ8B
15+
Af8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwHwYDVR0jBBgwFoAUu1IoKSSd
16+
uWgCvLCZxCSfohgksKAwgY4GA1UdEQSBhjCBg4ILKi5kZGV2LnNpdGWCCWxvY2Fs
17+
aG9zdIIMKi5kZGV2LmxvY2FsggtkZGV2LXJvdXRlcoIQZGRldi1yb3V0ZXIuZGRl
18+
doIYZGRldi1yb3V0ZXIuZGRldl9kZWZhdWx0ghxjb21wYXRpYmxpdHktY2hlY2su
19+
ZGRldi5zaXRlhwR/AAABMA0GCSqGSIb3DQEBCwUAA4IBgQB33dio3Tym2BbwTeTl
20+
pJzXAMpOH7Q41OcM1F/S22wZUrNV8z/FNwnUAxIOuZ4gHHBxY32NBStogfnmgJl6
21+
1I7/Ok826USh7BckQoOA1mQIRs1qX/J2Ek613JjlVw4aC6lsRLMmRLaCgjtWAM59
22+
mwT0iTUVEHdfOeg/9kB6rcVU9gopCDsz3z4k3VmTMrs8t3YHrKIV3MG5ORIJGS9a
23+
MH8DBxpyhk7N4fwXl7ilV6GpswVbe4lp7/yeeomgRdF+fLLCLnknVziHbcQDY4M7
24+
8TheUxO007hXRR4JwlIE9L5NlpWyrVwsPAHJC7tUc+Xz9UNu3SVLcGknOxq4IA8i
25+
2HE946kQBoRxU18FpmDqAjC9yxRh0nGZafwo8wZudclxLhLXzOWtgaQpKn9KsWyg
26+
bc6u7akxmaFj2wgsmhlhNfg8Tmcbr9D3HCTBCW5QpoBZVgeheVbbegZ+fFdscmV6
27+
P8+lrwvqpbk1FD9tPiiSnlzRcopf2NutXVHD1L/ftODZIYg=
28+
-----END CERTIFICATE-----
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#ddev-generated
2+
-----BEGIN PRIVATE KEY-----
3+
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDbMwUZstI0NvaT
4+
cGRtmGKRViCiDUU55a1XxZfe9PRPg7HGfCYUZb3h2tXSccNRpJuzQKVOVTCiOkxM
5+
TVkUmI27PiLAHPKclNjc9wWBSIh8SOFxXYjri/VfIe1BLpciz85fTbJW3NQQSFZ7
6+
LclJ6wmxdQKZ3DrktGn8wwxcTc/DoH0KrX4v8MCMwe4wa6P1COMH1LUFiJH2vPdc
7+
DW4NYgRRQTcGMxOxydgJoA/1NuxEbgbPU2zEFEpfLC/XdnF4sQFHlKWGMPINmzjX
8+
2tr78xBcuIdlpgv0uR4Q40WFGMoGQ/mmdsXk31aUOitFEJB0/pglIFiV+nWHxtet
9+
1Vl0WdXRAgMBAAECggEAUuCgfg3xklJxul9VaWajZgYlgn/3+6MOflA0UtVVBjdp
10+
4P0RvMaXG60NCWuACP9u60B2//4PzFa0gGkCVFo1xGUC6JZJWNCiijFPwIj3Kd64
11+
do+B9GVPme+O8AU4ma3ufnQ3CMan25wuLpaqM6uNV65BFIGDNvPL2wi4RLIa6wCx
12+
BGw9YopBZVqAkVTj9QsEnH4pcGiqa5x8/khAXJR+uEcwzc4odinVkNwESWj5RecO
13+
i8fUnjgBIZBwCZabISr+dKy8hZvZQw3h2FZfg3FzQ3CJe/btzmeCyvf/muA/cCYg
14+
6/CMyG2wwQLNwfr6IU7C2XeAJEgn661LHpQv9VMjPQKBgQDtomjGsvRnO9gjrfzD
15+
SXMBh+cvmF+dFs7iMDR9CezltLx7xs/R7wQvYw2puvGYqBow5XhgT5CG0oF7RbUE
16+
fxZz9Cskrp3FMzybgqUY6uZ5/qcWMXyW7NfY2rztXyVn1bp6tSIopFdkiz7vAtK1
17+
DAgmHSVa2o0y3f6JjY0ipz/6IwKBgQDsI99Tuy8eIcW+8KyK1phVPH9hLZ8I+gR+
18+
1QfeupJKyl6uKGlG/DNulNj95b9dEKpIlSUr/GAl7ckn6HWzMGZaC2aZIKJdFKWq
19+
Bxz8LqYX4dNcrjjqSbU50koQa0vOYAuGdpRCFAy+ElNSm48HeF4o9zWFrIvumVKK
20+
W+vzItGtewKBgQDbxAREJoIS6uxz6tdEv6ulccsjYDakr9A6rLwOG1zD/wcFLZNK
21+
olJrhJ7BJouCU4yNRdqyr0KI/SsUFx5WfzYDnH892GM+WakmZIdM6QinMBPUWYXQ
22+
ik8AVSK+H+0W/zkLfHKPxZSw/noATssQ9oSewvul71MABP/+tDMfJi/rowKBgAWf
23+
4Rzkc33bPhOLNgDklaJKG5qb9JLJKbw/pL1YYk2nvlOVoNRRA4SZxQVfKIy17ehm
24+
rQj8LOoaXNU3gz4uY/G3Hc196oAfEscW/ki/b7NX7KnjeHWUJd3ntV3owFh9Dyk3
25+
v9ZHFfqdAyEPlXuPEWcWZE73yil3u3CSOe+Dn8zrAoGAJhIP8fPaQeI3AHr4cNg1
26+
aT7jeFWTgoO/ojCZMMJ1mwElMHGIdv7jEUVB91sP0PrX6IzLdONSQltIN8YwDMBj
27+
1CJ6CUrHM+I3xReHhkfLC7bX3F3Oo1SNa7ZNBw3QZGRkzh38lQ3SqKSeBnUweqNs
28+
ld2xHwRH3zhVQpVI5xNTWiE=
29+
-----END PRIVATE KEY-----

0 commit comments

Comments
 (0)