Skip to content

Commit 106a457

Browse files
committed
Update Metadata
1 parent c8e3aaa commit 106a457

8 files changed

Lines changed: 95 additions & 70 deletions

File tree

.github/FUNDING.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/STYLE-GUIDE.md

Lines changed: 0 additions & 51 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Ignores text editor metadata
2-
.vscode
3-
41
# Ignores Mac metadata. You can configure this globally if you use a Mac: http://islegend.com/development/setting-global-gitignore-mac-windows/
52
.DS_Store
63

.vscode/extensions.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"recommendations": [
3+
"junstyle.php-cs-fixer",
4+
"xdebug.php-debug",
5+
"neilbrayfield.php-docblocker",
6+
"bmewburn.vscode-intelephense-client",
7+
"sanderronde.phpstan-vscode"
8+
]
9+
}

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Listen for XDebug",
9+
"type": "php",
10+
"request": "launch",
11+
"port": 9000
12+
}
13+
]
14+
}

.vscode/tasks.json

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "PHPUnit",
8+
"type": "shell",
9+
"options": {
10+
"env": {
11+
"XDEBUG_CONFIG": "idekey=VSCODE"
12+
}
13+
},
14+
"command": "printf '\\33c\\e[3J' && vendor/bin/phpunit --stop-on-failure --stop-on-error",
15+
// "command": "printf '\\33c\\e[3J' && vendor/bin/phpunit --filter SettingsPageActionTest --stop-on-failure --stop-on-error",
16+
"problemMatcher": [],
17+
"group": {
18+
"kind": "build",
19+
"isDefault": true
20+
}
21+
},
22+
{
23+
"label": "PHP CS Fixer",
24+
"type": "shell",
25+
"command": "vendor/bin/php-cs-fixer fix",
26+
"problemMatcher": [],
27+
},
28+
{
29+
"label": "PHPStan",
30+
"type": "shell",
31+
"command": "vendor/bin/phpstan analyse",
32+
"problemMatcher": []
33+
},
34+
{
35+
"label": "Serve",
36+
"type": "shell",
37+
"options": {},
38+
"command": "php bakery serve",
39+
"problemMatcher": [],
40+
},
41+
{
42+
"label": "npm install",
43+
"type": "shell",
44+
"options": {},
45+
"command": "npm install",
46+
"problemMatcher": [],
47+
},
48+
{
49+
"label": "npm update",
50+
"type": "shell",
51+
"options": {},
52+
"command": "npm update",
53+
"problemMatcher": [],
54+
},
55+
{
56+
"label": "npm run encore dev",
57+
"type": "shell",
58+
"options": {},
59+
"command": "npm run dev",
60+
"problemMatcher": [],
61+
},
62+
{
63+
"label": "npm run encore watch",
64+
"type": "shell",
65+
"options": {},
66+
"command": "npm run watch",
67+
"problemMatcher": [],
68+
}
69+
]
70+
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ See main [UserFrosting Documentation](https://learn.userfrosting.com) for more i
4545
- [Changelog](CHANGELOG.md)
4646
- [Issues](https://github.com/userfrosting/UserFrosting/issues)
4747
- [License](LICENSE.md)
48-
- [Style Guide](STYLE-GUIDE.md)
48+
- [Style Guide](https://github.com/userfrosting/.github/blob/main/.github/STYLE-GUIDE.md)
4949
5050
## Contributing
5151
52-
This project exists thanks to all the people who contribute. If you're interested in contributing to the UserFrosting codebase, please see our [contributing guidelines](https://github.com/userfrosting/UserFrosting/blob/5.1/.github/CONTRIBUTING.md) as well as our [style guidelines](.github/STYLE-GUIDE.md).
52+
This project exists thanks to all the people who contribute. If you're interested in contributing to the UserFrosting codebase, please see our [contributing guidelines](https://github.com/userfrosting/.github/blob/main/.github/CONTRIBUTING.md) as well as our [style guidelines](https://github.com/userfrosting/.github/blob/main/.github/STYLE-GUIDE.md).
5353
5454
[![](https://opencollective.com/userfrosting/contributors.svg?width=890&button=true)](https://github.com/userfrosting/sprinkle-core/graphs/contributors)

0 commit comments

Comments
 (0)