Skip to content

Commit

Permalink
documentation link fix
Browse files Browse the repository at this point in the history
  • Loading branch information
absolute-quantum committed Jun 13, 2020
1 parent 2c9b95d commit 15fedd5
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions src/Resources/doc/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ DoctrineEncrypt\Entity\UserDetail has 13 properties which are encrypted.
You can use the comment `doctrine:encrypt:database [encryptor]` to encrypt the current database.

* Optional parameter [encryptor]
* An encryptor provided by the bundle (Defuse or Halite) or your own [encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md).
* An encryptor provided by the bundle (Defuse or Halite) or your own [encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md).
* Default: Your encryptor set in the configuration file or the default encryption class when not set in the configuration file

```
Expand Down Expand Up @@ -54,7 +54,7 @@ Encryption finished values encrypted: 203 values.
You can use the comment `doctrine:decrypt:database [encryptor]` to decrypt the current database.

* Optional parameter [encryptor]
* An encryptor provided by the bundle (Defuse or Halite) or your own [encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md).
* An encryptor provided by the bundle (Defuse or Halite) or your own [encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md).
* Default: Your encryptor set in the configuration file or the default encryption class when not set in the configuration file

```
Expand All @@ -81,4 +81,4 @@ Decryption finished entities found: 26, decrypted 195 values.

You may want to use your own encryption class learn how here:

#### [Custom encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md)
#### [Custom encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md)
4 changes: 2 additions & 2 deletions src/Resources/doc/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ There is only 1 paramater in the configuration of the Doctrine encryption bundle
This parameter is also optional.

* **encryptor_class** - Custom class for encrypting data
* Encryptor class, [your own encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md) will override encryptor paramater
* Encryptor class, [your own encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md) will override encryptor paramater
* Default: Halite

## yaml
Expand All @@ -24,4 +24,4 @@ composer require "defuse/php-encryption ^2.0"
## Usage
Read how to use the database encryption bundle in your project.
#### [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/usage.md)
#### [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/usage.md)
2 changes: 1 addition & 1 deletion src/Resources/doc/custom_encryptor.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ We can imagine that you want to use your own encryption class, and while that se

That being said, you can add custom Encryptor classes to Ambta/DoctrineEncryptBundle/Encryptors to implement your own favorite library.

#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/index.md)
#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/index.md)
2 changes: 1 addition & 1 deletion src/Resources/doc/example_of_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ So our information is encrypted, and unless someone has your .DefuseEncryptor.ke

You need `DoctrineFixturesBundle` and `defuse/php-encryption` extension for this example

#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/index.md)
#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/index.md)
10 changes: 5 additions & 5 deletions src/Resources/doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ All encryption/decryption work on the server side.

The following documents are available:

* [Installation](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/installation.md)
* [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/configuration.md)
* [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/usage.md)
* [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/commands.md)
* [Custom encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md)
* [Installation](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/installation.md)
* [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/configuration.md)
* [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/usage.md)
* [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/commands.md)
* [Custom encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md)
2 changes: 1 addition & 1 deletion src/Resources/doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ public function registerBundles()
All configuration value's are optional.
On the following page you can find the configuration information.

#### [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/configuration.md)
#### [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/configuration.md)
2 changes: 1 addition & 1 deletion src/Resources/doc/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ We keep an <ENC> prefix to check if data is encrypted or not so, unencrypted dat
There are some console commands that can help you encrypt your existing database or change encryption methods.
Read more about the database encryption commands provided with this bundle.

#### [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/commands.md)
#### [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/commands.md)

0 comments on commit 15fedd5

Please sign in to comment.