Skip to content

Commit b9f0460

Browse files
authored
Merge pull request #121 from devmount/chores/dependency-updates
Dependency updates
2 parents 8e043ed + e45992b commit b9f0460

File tree

3 files changed

+499
-207
lines changed

3 files changed

+499
-207
lines changed

.ddev/config.yaml

Lines changed: 299 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,299 @@
1+
name: sales
2+
type: laravel
3+
docroot: public
4+
php_version: "8.4"
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://ddev.readthedocs.io/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.4"
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> # nginx/php docker image.
37+
38+
# database:
39+
# type: <dbtype> # mysql, mariadb, postgres
40+
# version: <version> # database version, like "10.11" or "8.0"
41+
# MariaDB versions can be 5.5-10.8, 10.11, and 11.4.
42+
# MySQL versions can be 5.5-8.0.
43+
# PostgreSQL versions can be 9-17.
44+
45+
# router_http_port: <port> # Port to be used for http (defaults to global configuration, usually 80)
46+
# router_https_port: <port> # Port for https (defaults to global configuration, usually 443)
47+
48+
# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart"
49+
# Note that for most people the commands
50+
# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better,
51+
# as leaving Xdebug enabled all the time is a big performance hit.
52+
53+
# xhgui_https_port: 8142
54+
# Can be used to change the router https port for xhgui application
55+
# Very rarely used
56+
57+
# xhgui_http_port: 8143
58+
# Can be used to change the router http port for xhgui application
59+
# Very rarely used
60+
61+
# host_xhgui_port: 8142
62+
# Can be used to change the host binding port of the xhgui
63+
# application. Rarely used; only when port conflict and
64+
# bind_all_ports is used (normally with router disabled)
65+
66+
# xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart"
67+
# Note that for most people the commands
68+
# "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better,
69+
# as leaving Xhprof enabled all the time is a big performance hit.
70+
71+
# xhprof_mode: [prepend|xhgui|global]
72+
# Set to "xhgui" to enable XHGui features
73+
# "xhgui" will become default in a future major release
74+
75+
# webserver_type: nginx-fpm, apache-fpm, generic
76+
77+
# timezone: Europe/Berlin
78+
# If timezone is unset, DDEV will attempt to derive it from the host system timezone
79+
# using the $TZ environment variable or the /etc/localtime symlink.
80+
# This is the timezone used in the containers and by PHP;
81+
# it can be set to any valid timezone,
82+
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
83+
# For example Europe/Dublin or MST7MDT
84+
85+
# composer_root: <relative_path>
86+
# Relative path to the Composer root directory from the project root. This is
87+
# the directory which contains the composer.json and where all Composer related
88+
# commands are executed.
89+
90+
# composer_version: "2"
91+
# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1
92+
# to use the latest major version available at the time your container is built.
93+
# It is also possible to use each other Composer version channel. This includes:
94+
# - 2.2 (latest Composer LTS version)
95+
# - stable
96+
# - preview
97+
# - snapshot
98+
# Alternatively, an explicit Composer version may be specified, for example "2.2.18".
99+
# To reinstall Composer after the image was built, run "ddev debug rebuild".
100+
101+
# nodejs_version: "22"
102+
# change from the default system Node.js version to any other version.
103+
# See https://ddev.readthedocs.io/en/stable/users/configuration/config/#nodejs_version for more information
104+
# and https://www.npmjs.com/package/n#specifying-nodejs-versions for the full documentation,
105+
# Note that using of 'ddev nvm' is discouraged because "nodejs_version" is much easier to use,
106+
# can specify any version, and is more robust than using 'nvm'.
107+
108+
# corepack_enable: false
109+
# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm
110+
111+
# additional_hostnames:
112+
# - somename
113+
# - someothername
114+
# would provide http and https URLs for "somename.ddev.site"
115+
# and "someothername.ddev.site".
116+
117+
# additional_fqdns:
118+
# - example.com
119+
# - sub1.example.com
120+
# would provide http and https URLs for "example.com" and "sub1.example.com"
121+
# Please take care with this because it can cause great confusion.
122+
123+
# upload_dirs: "custom/upload/dir"
124+
#
125+
# upload_dirs:
126+
# - custom/upload/dir
127+
# - ../private
128+
#
129+
# would set the destination paths for ddev import-files to <docroot>/custom/upload/dir
130+
# When Mutagen is enabled this path is bind-mounted so that all the files
131+
# in the upload_dirs don't have to be synced into Mutagen.
132+
133+
# disable_upload_dirs_warning: false
134+
# If true, turns off the normal warning that says
135+
# "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set"
136+
137+
# ddev_version_constraint: ""
138+
# Example:
139+
# ddev_version_constraint: ">= 1.22.4"
140+
# This will enforce that the running ddev version is within this constraint.
141+
# See https://github.com/Masterminds/semver#checking-version-constraints for
142+
# supported constraint formats
143+
144+
# working_dir:
145+
# web: /var/www/html
146+
# db: /home
147+
# would set the default working directory for the web and db services.
148+
# These values specify the destination directory for ddev ssh and the
149+
# directory in which commands passed into ddev exec are run.
150+
151+
omit_containers: [ddev-ssh-agent]
152+
# Currently only these containers are supported. Some containers can also be
153+
# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit
154+
# the "db" container, several standard features of DDEV that access the
155+
# database container will be unusable. In the global configuration it is also
156+
# possible to omit ddev-router, but not here.
157+
158+
# performance_mode: "global"
159+
# DDEV offers performance optimization strategies to improve the filesystem
160+
# performance depending on your host system. Should be configured globally.
161+
#
162+
# If set, will override the global config. Possible values are:
163+
# - "global": uses the value from the global config.
164+
# - "none": disables performance optimization for this project.
165+
# - "mutagen": enables Mutagen for this project.
166+
# - "nfs": enables NFS for this project.
167+
#
168+
# See https://ddev.readthedocs.io/en/stable/users/install/performance/#nfs
169+
# See https://ddev.readthedocs.io/en/stable/users/install/performance/#mutagen
170+
171+
# fail_on_hook_fail: False
172+
# Decide whether 'ddev start' should be interrupted by a failing hook
173+
174+
# host_https_port: "59002"
175+
# The host port binding for https 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_webserver_port: "59001"
181+
# The host port binding for the ddev-webserver can be explicitly specified. It is
182+
# dynamic unless otherwise specified.
183+
# This is not used by most people, most people use the *router* instead
184+
# of the localhost port.
185+
186+
# host_db_port: "59002"
187+
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
188+
# unless explicitly specified.
189+
190+
# mailpit_http_port: "8025"
191+
# mailpit_https_port: "8026"
192+
# The Mailpit ports can be changed from the default 8025 and 8026
193+
194+
# host_mailpit_port: "8025"
195+
# The mailpit port is not normally bound on the host at all, instead being routed
196+
# through ddev-router, but it can be bound directly to localhost if specified here.
197+
198+
# webimage_extra_packages: [php7.4-tidy, php-bcmath]
199+
# Extra Debian packages that are needed in the webimage can be added here
200+
201+
# dbimage_extra_packages: [telnet,netcat]
202+
# Extra Debian packages that are needed in the dbimage can be added here
203+
204+
# use_dns_when_possible: true
205+
# If the host has internet access and the domain configured can
206+
# successfully be looked up, DNS will be used for hostname resolution
207+
# instead of editing /etc/hosts
208+
# Defaults to true
209+
210+
# project_tld: ddev.site
211+
# The top-level domain used for project URLs
212+
# The default "ddev.site" allows DNS lookup via a wildcard
213+
# If you prefer you can change this to "ddev.local" to preserve
214+
# pre-v1.9 behavior.
215+
216+
# ngrok_args: --basic-auth username:pass1234
217+
# Provide extra flags to the "ngrok http" command, see
218+
# https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h"
219+
220+
# disable_settings_management: false
221+
# If true, DDEV will not create CMS-specific settings files like
222+
# Drupal's settings.php/settings.ddev.php or TYPO3's additional.php
223+
# In this case the user must provide all such settings.
224+
225+
# You can inject environment variables into the web container with:
226+
# web_environment:
227+
# - SOMEENV=somevalue
228+
# - SOMEOTHERENV=someothervalue
229+
230+
# no_project_mount: false
231+
# (Experimental) If true, DDEV will not mount the project into the web container;
232+
# the user is responsible for mounting it manually or via a script.
233+
# This is to enable experimentation with alternate file mounting strategies.
234+
# For advanced users only!
235+
236+
# bind_all_interfaces: false
237+
# If true, host ports will be bound on all network interfaces,
238+
# not the localhost interface only. This means that ports
239+
# will be available on the local network if the host firewall
240+
# allows it.
241+
242+
# default_container_timeout: 120
243+
# The default time that DDEV waits for all containers to become ready can be increased from
244+
# the default 120. This helps in importing huge databases, for example.
245+
246+
#web_extra_exposed_ports:
247+
#- name: nodejs
248+
# container_port: 3000
249+
# http_port: 2999
250+
# https_port: 3000
251+
#- name: something
252+
# container_port: 4000
253+
# https_port: 4000
254+
# http_port: 3999
255+
# Allows a set of extra ports to be exposed via ddev-router
256+
# Fill in all three fields even if you don’t intend to use the https_port!
257+
# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start.
258+
#
259+
# The port behavior on the ddev-webserver must be arranged separately, for example
260+
# using web_extra_daemons.
261+
# For example, with a web app on port 3000 inside the container, this config would
262+
# expose that web app on https://<project>.ddev.site:9999 and http://<project>.ddev.site:9998
263+
# web_extra_exposed_ports:
264+
# - name: myapp
265+
# container_port: 3000
266+
# http_port: 9998
267+
# https_port: 9999
268+
269+
#web_extra_daemons:
270+
#- name: "http-1"
271+
# command: "/var/www/html/node_modules/.bin/http-server -p 3000"
272+
# directory: /var/www/html
273+
#- name: "http-2"
274+
# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000"
275+
# directory: /var/www/html
276+
277+
# override_config: false
278+
# By default, config.*.yaml files are *merged* into the configuration
279+
# But this means that some things can't be overridden
280+
# For example, if you have 'use_dns_when_possible: true'' you can't override it with a merge
281+
# and you can't erase existing hooks or all environment variables.
282+
# However, with "override_config: true" in a particular config.*.yaml file,
283+
# 'use_dns_when_possible: false' can override the existing values, and
284+
# hooks:
285+
# post-start: []
286+
# or
287+
# web_environment: []
288+
# or
289+
# additional_hostnames: []
290+
# can have their intended affect. 'override_config' affects only behavior of the
291+
# config.*.yaml file it exists in.
292+
293+
# Many DDEV commands can be extended to run tasks before or after the
294+
# DDEV command is executed, for example "post-start", "post-import-db",
295+
# "pre-composer", "post-composer"
296+
# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more
297+
# information on the commands that can be extended and the tasks you can define
298+
# for them. Example:
299+
#hooks:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"license": "MIT",
1010
"require": {
11-
"php": "^8.3",
11+
"php": "^8.4",
1212
"filament/filament": "^3.2.42",
1313
"flowframe/laravel-trend": "^0.4.0",
1414
"guzzlehttp/guzzle": "^7.2",

0 commit comments

Comments
 (0)