Skip to content

Commit

Permalink
Update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Apr 28, 2024
1 parent 60efe6f commit a10a567
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 68 deletions.
12 changes: 0 additions & 12 deletions .github/FUNDING.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ _meta
.phpunit.cache
.phpdoc

# OS & Editors
# OS
.DS_Store
*.komodoproject
.vscode

# Testing artifacts
tests/Cache/store
9 changes: 9 additions & 0 deletions .vscode/extensions.json
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"
]
}
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// 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
}
]
}
36 changes: 36 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
// 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 --stop-on-failure --stop-on-error",
// "command": "printf '\\33c\\e[3J' && vendor/bin/phpunit --filter FormValidationArrayAdapterTest --stop-on-failure --stop-on-error --display-warnings",

"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "PHP CS Fixer",
"type": "shell",
"command": "vendor/bin/php-cs-fixer fix",
"problemMatcher": []
},
{
"label": "PHPStan",
"type": "shell",
"command": "vendor/bin/phpstan analyse",
"problemMatcher": []
}
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ See main [UserFrosting Documentation](https://learn.userfrosting.com) and docume

## [License](LICENSE.md)

## [Style Guide](STYLE-GUIDE.md)
## [Style Guide](https://github.com/userfrosting/.github/blob/main/.github/STYLE-GUIDE.md)

## [Testing](RUNNING_TESTS.md)
50 changes: 0 additions & 50 deletions STYLE-GUIDE.md

This file was deleted.

0 comments on commit a10a567

Please sign in to comment.