Skip to content

Commit 73c170e

Browse files
committed
wording fixes
Signed-off-by: Jurj-Bogdan <[email protected]>
1 parent b774f0c commit 73c170e

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 DotKernel
3+
Copyright (c) 2024 Dotkernel
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "dotkernel/admin-documentation",
3-
"description": "DotKernel Admin documentation markdown files.",
3+
"description": "Dotkernel Admin documentation markdown files.",
44
"type": "metapackage",
55
"license": "MIT",
66
"authors": [
77
{
8-
"name": "DotKernel Team",
8+
"name": "Dotkernel Team",
99
"email": "[email protected]"
1010
}
1111
],

docs/book/v6/security/basic-security.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Basic Security
22

3-
`dotkernel/admin` provides all necessary tools to implement safe applications, however you will need to manually make use of some of them.
3+
Dotkernel Admin provides all necessary tools to implement safe applications, however you will need to manually make use of some of them.
44
This section will go over the provided tools and any steps you need to follow in order to use them successfully, as well as a few general considerations.
55

66
## Form Input Validation
77

8-
In order to create safe forms, `dotkernel/admin` makes use of [laminas/laminas-form](https://github.com/laminas/laminas-form) and [laminas/laminas-inputfilter](https://github.com/laminas/laminas-inputfilter).
8+
In order to create safe forms, Dotkernel Admin makes use of [laminas/laminas-form](https://github.com/laminas/laminas-form) and [laminas/laminas-inputfilter](https://github.com/laminas/laminas-inputfilter).
99
All shipped forms have their inputs validated, and it is strongly recommended any custom forms added also make use of input filters to validate user input.
1010

1111
## Cross-Site Request Forgery Protection
1212

13-
`dotkernel/admin` provides protection against CSRF attacks by using CSRF token creation and validation, available for all forms.
13+
Dotkernel Admin provides protection against CSRF attacks by using CSRF token creation and validation, available for all forms.
1414

1515
All forms provided make use of CSRF token validation, but you must ensure to implement this step for any new forms you create.
1616

@@ -41,10 +41,10 @@ Pay extra attention to the following keys, to make sure your desired values are
4141

4242
## PHP Dependencies
4343

44-
`dotkernel/admin` uses `composer` to handle PHP dependencies.
44+
Dotkernel Admin uses `composer` to handle PHP dependencies.
4545
In time, make sure to review any common vulnerabilities and exposures for your dependencies.
4646

47-
> You may also keep an eye on the `dotkernel/admin` changelog for any updates relevant to your project.
47+
> You may also keep an eye on the Dotkernel Admin changelog for any updates relevant to your project.
4848
4949
## JavaScript Dependencies
5050

@@ -65,7 +65,7 @@ Keep an eye on any vulnerabilities whenever using `npm` to install or update pac
6565
composer development-status
6666
```
6767

68-
- `Admin` ships with a [Laminas Continuous Integration](https://github.com/laminas/laminas-continuous-integration-action) GitHub Action,
68+
- Dotkernel Admin ships with a [Laminas Continuous Integration](https://github.com/laminas/laminas-continuous-integration-action) GitHub Action,
6969
if you are using a public repository consider keeping it in your custom applications to ensure code quality.
7070

7171
> Read more about using [Laminas Continuous Integration](https://getlaminas.org/blog/2024-08-05-using-laminas-continuous-integration.html).

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ nav:
5555
- Tutorials:
5656
- "Creating a book module using DotMaker": v6/tutorials/create-book-module-via-dot-maker.md
5757
site_name: admin
58-
site_description: "DotKernel Admin"
58+
site_description: "Dotkernel Admin"
5959
repo_url: "https://github.com/dotkernel/admin"
6060
plugins:
6161
- search

0 commit comments

Comments
 (0)