-
-
Notifications
You must be signed in to change notification settings - Fork 366
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
87 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"recommendations": [ | ||
"junstyle.php-cs-fixer", | ||
"xdebug.php-debug", | ||
"neilbrayfield.php-docblocker", | ||
"bmewburn.vscode-intelephense-client", | ||
"sanderronde.phpstan-vscode" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
// 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": 9000, | ||
"log": false, | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "PHPUnit", | ||
"type": "shell", | ||
"options": { | ||
"env": { | ||
"XDEBUG_CONFIG": "idekey=VSCODE" | ||
} | ||
}, | ||
"command": "printf '\\33c\\e[3J' && vendor/bin/phpunit", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "PHP CS Fixer", | ||
"type": "shell", | ||
"options": {}, | ||
"command": "vendor/bin/php-cs-fixer fix", | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"label": "Serve", | ||
"type": "shell", | ||
"options": {}, | ||
"command": "php bakery serve", | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"label": "npm update", | ||
"type": "shell", | ||
"options": {}, | ||
"command": "npm update", | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"label": "npm run encore dev", | ||
"type": "shell", | ||
"options": {}, | ||
"command": "npm run dev", | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"label": "npm run encore watch", | ||
"type": "shell", | ||
"options": {}, | ||
"command": "npm run dev --watch", | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"label": "PHPStan", | ||
"type": "shell", | ||
"command": "vendor/bin/phpstan analyse", | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |