Skip to content

Commit 15fedd5

Browse files
documentation link fix
1 parent 2c9b95d commit 15fedd5

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

src/Resources/doc/commands.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ DoctrineEncrypt\Entity\UserDetail has 13 properties which are encrypted.
2525
You can use the comment `doctrine:encrypt:database [encryptor]` to encrypt the current database.
2626

2727
* Optional parameter [encryptor]
28-
* 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).
28+
* 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).
2929
* Default: Your encryptor set in the configuration file or the default encryption class when not set in the configuration file
3030

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

5656
* Optional parameter [encryptor]
57-
* 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).
57+
* 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).
5858
* Default: Your encryptor set in the configuration file or the default encryption class when not set in the configuration file
5959

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

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

84-
#### [Custom encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md)
84+
#### [Custom encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md)

src/Resources/doc/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ There is only 1 paramater in the configuration of the Doctrine encryption bundle
44
This parameter is also optional.
55

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

1010
## yaml
@@ -24,4 +24,4 @@ composer require "defuse/php-encryption ^2.0"
2424
## Usage
2525
2626
Read how to use the database encryption bundle in your project.
27-
#### [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/usage.md)
27+
#### [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/usage.md)

src/Resources/doc/custom_encryptor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ We can imagine that you want to use your own encryption class, and while that se
44

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

7-
#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/index.md)
7+
#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/index.md)

src/Resources/doc/example_of_usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ So our information is encrypted, and unless someone has your .DefuseEncryptor.ke
137137

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

140-
#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/index.md)
140+
#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/index.md)

src/Resources/doc/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ All encryption/decryption work on the server side.
55

66
The following documents are available:
77

8-
* [Installation](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/installation.md)
9-
* [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/configuration.md)
10-
* [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/usage.md)
11-
* [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/commands.md)
12-
* [Custom encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md)
8+
* [Installation](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/installation.md)
9+
* [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/configuration.md)
10+
* [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/usage.md)
11+
* [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/commands.md)
12+
* [Custom encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md)

src/Resources/doc/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ public function registerBundles()
5151
All configuration value's are optional.
5252
On the following page you can find the configuration information.
5353

54-
#### [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/configuration.md)
54+
#### [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/configuration.md)

src/Resources/doc/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ We keep an <ENC> prefix to check if data is encrypted or not so, unencrypted dat
3838
There are some console commands that can help you encrypt your existing database or change encryption methods.
3939
Read more about the database encryption commands provided with this bundle.
4040

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

0 commit comments

Comments
 (0)