Skip to content
Open
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
4 changes: 4 additions & 0 deletions .dxcli/subcommands/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ source "$PROJECT_ROOT/.dxcli/shared.sh"
# Validate environment
require_command php

echo
log_info "Running architecture tests..."
/usr/bin/env php "$PROJECT_ROOT/vendor/bin/pest" --group=architecture

echo
log_info "Running shell-scripts tests..."
/usr/bin/env bats "$PROJECT_ROOT/tests/ShellScripts/test-docker-cli-wrapper.bats"
Expand Down
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

###> symfony/framework-bundle ###
/.env.local
/.env.local.php
Expand All @@ -16,6 +15,7 @@

###> symfony/phpunit-bridge ###
.phpunit.result.cache
.phpunit.cache
/phpunit.xml
###< symfony/phpunit-bridge ###

Expand All @@ -41,9 +41,4 @@ node_modules/
###> sensiolabs/minify-bundle ###
/var/minify/
###< sensiolabs/minify-bundle ###

###> deptrac/deptrac ###
.deptrac.cache
###< deptrac/deptrac ###

.cursor/mcp.json
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"phpstan/extension-installer": true
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
},
"bump-after-update": true,
"sort-packages": true
Expand Down Expand Up @@ -113,15 +114,15 @@
},
"require-dev": {
"dbrekelmans/bdi": "^1.4",
"deptrac/deptrac": "^3.0",
"ergebnis/phpstan-rules": "^2.11.0",
"erickskrauch/php-cs-fixer-custom-fixers": "^1.3",
"friendsofphp/php-cs-fixer": "^3.86.0",
"pestphp/pest": "^4.1.0",
"pestphp/pest-plugin-arch": "^4.0.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan-doctrine": "^2.0.4",
"phpstan/phpstan-phpunit": "^2.0.7",
"phpstan/phpstan-symfony": "^2.0.7",
"phpunit/phpunit": "^9.6.25",
"symfony/browser-kit": "7.3.*",
"symfony/css-selector": "7.3.*",
"symfony/debug-bundle": "7.3.*",
Expand Down
Loading