Skip to content
Merged

V4 #399

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM php:8.5-cli-trixie

RUN apt-get update && apt-get install -y --no-install-recommends \
file \
git \
openssh-client \
&& rm -rf /var/lib/apt/lists/*

ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/

RUN set -eux; \
install-php-extensions \
@composer \
apcu \
opcache \
xdebug \
;

RUN useradd -m vscode

USER vscode
WORKDIR /workspace
42 changes: 42 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"name": "A2LiX - TranslationFormBundle",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"bmewburn.vscode-intelephense-client",
"xdebug.php-debug",
"SanderRonde.phpstan-vscode"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"intelephense.telemetry.enabled": false,
"phpstan.checkValidity": true,
"workbench.colorCustomizations": {
"statusBar.background": "#ffa600d3",
"statusBar.noFolderBackground": "#ffa600d3",
"statusBar.debuggingBackground": "#ffa600d3",
"activityBar.activeBorder": "#ffa600d3",
"activityBarBadge.background": "#ffa600d3",
"badge.background": "#ffa600d3",
"focusBorder": "#ffa600d3",
"progressBar.background": "#ffa600d3",
"notificationCenter.border": "#ffa600d3",
"notificationsInfoIcon.foreground": "#ffa600d3",
"pickerGroup.border": "#ffa600d3",
"settings.modifiedItemIndicator": "#ffa600d3",
"panelTitle.activeBorder": "#ffa600d3",
"list.activeSelectionBackground": "#6e6e6e",
"list.inactiveSelectionBackground": "#6e6e6e",
"list.hoverBackground": "#6e6e6e",
},
}
}
},
"remoteUser": "vscode",
"mounts": [
"source=/home/david/Works/a2lix/AutoFormBundle,target=/workspaces/AutoFormBundle,type=bind,consistency=cached",
]
}
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[{compose.yaml,compose.*.yaml}]
indent_size = 2

[*.md]
trim_trailing_whitespace = false
44 changes: 0 additions & 44 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

54 changes: 0 additions & 54 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

Loading
Loading