Skip to content

Commit 971dd18

Browse files
phansysfranmomu
authored andcommitted
Remove version references in "Doctrine 2" occurrences
1 parent 3a93e21 commit 971dd18

15 files changed

+22
-20
lines changed

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
{
22
"name": "gedmo/doctrine-extensions",
3-
"description": "Doctrine2 behavioral extensions",
3+
"description": "Doctrine behavioral extensions",
44
"license": "MIT",
55
"type": "library",
66
"keywords": [
77
"behaviors",
8-
"doctrine2",
8+
"doctrine",
99
"extensions",
1010
"gedmo",
1111
"sluggable",
1212
"loggable",
13+
"odm",
14+
"orm",
1315
"translatable",
1416
"tree",
1517
"nestedset",

doc/blameable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Blameable behavior extension for Doctrine 2
1+
# Blameable behavior extension for Doctrine
22

33
**Blameable** behavior will automate the update of username or user reference fields
44
on your Entities or Documents. It works through annotations and can update

doc/ip_traceable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# IpTraceable behavior extension for Doctrine 2
1+
# IpTraceable behavior extension for Doctrine
22

33
**IpTraceable** behavior will automate the update of IP trace
44
on your Entities or Documents. It works through annotations and can update

doc/loggable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Loggable behavioral extension for Doctrine2
1+
# Loggable behavioral extension for Doctrine
22

33
**Loggable** behavior tracks your record changes and is able to
44
manage versions.

doc/mapping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Mapping extension for Doctrine2
1+
# Mapping extension for Doctrine
22

33
**Mapping** extension makes it easy to map additional metadata for event listeners.
44
It supports **Attribute**, **Xml** and **Annotation** drivers which will be chosen depending on

doc/reference_integrity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Reference Integrity behavior extension for Doctrine 2
1+
# Reference Integrity behavior extension for Doctrine
22

33
**ReferenceIntegrity** behavior will automate the reference integrity for referenced documents.
44
It works through annotations and attributes, and supports 'nullify', 'pull' and 'restrict' which throws an exception.

doc/references.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Cross Object Mapper References behavior extension for Doctrine 2
1+
# Cross Object Mapper References behavior extension for Doctrine
22

33
Create documents and entities that contain references to each other.
44

@@ -47,7 +47,7 @@ private $product;
4747

4848
## Example
4949

50-
Here is an example where you have a Product which is mapped using the Doctrine MongoDB ODM project and it contains a property `$stockItems` that is populated from the Doctrine2 ORM.
50+
Here is an example where you have a Product which is mapped using the Doctrine MongoDB ODM project and it contains a property `$stockItems` that is populated from the Doctrine ORM.
5151

5252
```php
5353
<?php

doc/sluggable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Sluggable behavior extension for Doctrine 2
1+
# Sluggable behavior extension for Doctrine
22

33
**Sluggable** behavior will build the slug of predefined fields on a given field
44
which should store the slug

doc/softdeleteable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SoftDeleteable behavior extension for Doctrine 2
1+
# SoftDeleteable behavior extension for Doctrine
22

33
**SoftDeleteable** behavior allows to "soft delete" objects, filtering them
44
at SELECT time by marking them deleted as with a timestamp, but not explicitly removing them from the database.

doc/sortable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Sortable behavior extension for Doctrine2
1+
# Sortable behavior extension for Doctrine
22

33
**Sortable** behavior will maintain a position field for ordering entities.
44

0 commit comments

Comments
 (0)