Skip to content

Commit

Permalink
Work-in-progress
Browse files Browse the repository at this point in the history
  • Loading branch information
jasperweyne committed Sep 21, 2024
1 parent f76dbbb commit eefe396
Show file tree
Hide file tree
Showing 58 changed files with 751 additions and 1,495 deletions.
48 changes: 48 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 0,
"runtimeArgs": [
"-dxdebug.start_with_request=yes"
],
"env": {
"XDEBUG_MODE": "debug,develop",
"XDEBUG_CONFIG": "client_port=${port}"
}
},
{
"name": "Launch Built-in web server",
"type": "php",
"request": "launch",
"runtimeArgs": [
"-dxdebug.mode=debug",
"-dxdebug.start_with_request=yes",
"-S",
"localhost:0"
],
"program": "",
"cwd": "${workspaceRoot}",
"port": 9003,
"serverReadyAction": {
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
"uriFormat": "http://localhost:%s",
"action": "openExternally"
}
}
]
}
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,8 @@
"require-dev": {
"ext-sqlite3": "*",
"ext-xdebug": "*",
"dama/doctrine-test-bundle": "^6.5",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"friendsofphp/php-cs-fixer": "^3.4",
"liip/test-fixtures-bundle": "^2.0.0",
"hautelook/alice-bundle": "^2.12",
"overblog/graphiql-bundle": "^0.3.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
Expand All @@ -81,7 +79,8 @@
"symfony/flex": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
},
"prepend-autoloader": false
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit eefe396

Please sign in to comment.