You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-8Lines changed: 2 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,7 @@ Simple dependency injection container based on <a href="http://www.php-di.org" t
4
4
5
5
## Installation
6
6
7
-
Easiest way is via composer:
8
-
9
-
```json
10
-
"require": {
11
-
"codenamephp/platform.di": "*"
12
-
}
13
-
```
7
+
Easiest way is via composer. Just run `composer require codenamephp/platform.di` in your cli which should install the latest version for you.
14
8
15
9
## Usage
16
10
@@ -119,7 +113,7 @@ class DefintionsProvider implements de\codenamephp\platform\di\definitionsProvid
119
113
#### Dependency Handlers
120
114
121
115
The ContainerBuilder has a DependencyHandler that handles the depdency checks and keeps track of already added dependencies and must implement the
122
-
e/codenamephp/platform/di/definitionsProvider/dependency/handler/iHandler. By default, a [de/codenamephp/platform/di/definitionsProvider/dependency/handler/DontHandle](#donthandle)
116
+
`de/codenamephp/platform/di/definitionsProvider/dependency/handler/iHandler`. By default, a [de/codenamephp/platform/di/definitionsProvider/dependency/handler/DontHandle](#donthandle)
123
117
instance is set so there is no dependency handling active by default (so BC is kept). This will change in future releases.
0 commit comments