Skip to content

Commit a2cafab

Browse files
committed
Merge pull request #11 from amitdar/master
Latest plugin updates
2 parents 7bb1cd2 + 7172f69 commit a2cafab

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

README.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
The Doctrine 2 plugin for Zend Server Z-Ray provides various information about the usage of Doctrine 2 in your application. Get a deeper look how entities and queries are used. Additional features are in the planning.
2+
3+
## Tab Entities
4+
The `Entities` tab displays information about used entities of the current page. There are the following columns:
5+
6+
* **Entity**: FCQN of the entity class
7+
* **Number Of Unique Entities**: How many unique objects of this entity exist.
8+
* **Number Of Referenced Entities**: How many references exist for this entity.
9+
10+
## Tab Queries
11+
The `Queries` tab displays information about executed queries. There are the following columns:
12+
13+
* **Query**: The executed query.
14+
* **Number**: The number of executions e.g. with different parameters.
15+
* **Cached**: The number of cached queries.
16+
17+
Note: real queries are calculated as `Number - Cached`.

deployment.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1+
12
{
23
"name" : "doctrine2",
34
"display_name" : "Doctrine 2",
4-
"version" : "1.0.0",
5+
"version" : "1.0.1",
56
"type": ["zray"],
6-
"logo": "docs/img/doctrine.png"
7-
}
7+
"logo": "docs/img/doctrine.png",
8+
"eula": "LICENSE.txt",
9+
"readme": "README.txt",
10+
"dependencies": {
11+
"plugin": {
12+
"min": "1.0.0"
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)