Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Composer #216

Merged
merged 1 commit into from
Jul 4, 2024
Merged
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
8 changes: 7 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,23 @@
"autofills",
"christianoliff",
"cleancss",
"CODEOWNERS",
"coliff",
"Cpath",
"Csvg",
"Dutton",
"Epqzn",
"fnames",
"GITLEAKS",
"gzipped",
"Oliff",
"stylelint",
"twbs"
],
"language": "en,en-US",
"ignorePaths": [".cspell.json", "**/node_modules/**"],
"ignorePaths": [
".cspell.json",
"**/node_modules/**"
],
"useGitignore": true
}
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# About CODEOWNERS - https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# About CODEOWNERS - <https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners>

* @coliff
2 changes: 2 additions & 0 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
VALIDATE_CHECKOV: false
VALIDATE_CSS: false
VALIDATE_EDITORCONFIG: false
VALIDATE_GITLEAKS: false
VALIDATE_HTML: false
VALIDATE_JSCPD: false
VALIDATE_MARKDOWN: false
VALIDATE_NATURAL_LANGUAGE: false
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
CODEOWNERS

*.css
*.min.*
Expand Down
28 changes: 28 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "coliff/bootstrap-show-password-toggle",
"description": "A show password as text toggle for Bootstrap",
"license": "MIT",
"homepage": "https://github.com/coliff/bootstrap-show-password-toggle#readme",
"keywords": [
"bootstrap",
"forms",
"password"
],
"authors": [
{
"name": "Christian Oliff",
"homepage": "https://christianoliff.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/coliff/bootstrap-show-password-toggle/issues",
"docs": "https://github.com/coliff/bootstrap-show-password-toggle#readme"
},
"funding": [
{
"type": "PayPal",
"url": "https://paypal.me/coliff"
}
]
}
Loading