File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,12 @@ Replacement of trikoder/oauth2-bundle made in coordination with [trikoder](https
17
17
composer require league/oauth2-server-bundle
18
18
```
19
19
20
+ 2. Require Doctrine to use it as persistence layer:
21
+
22
+ ` ` ` sh
23
+ composer require doctrine/doctrine-bundle doctrine/orm
24
+ ` ` `
25
+
20
26
# # Documentation
21
27
22
28
The docs [can be found in the ` docs/` directory](docs/index.md) of this repository.
Original file line number Diff line number Diff line change 18
18
"require" : {
19
19
"php" : " ^8.1" ,
20
20
"ext-openssl" : " *" ,
21
- "doctrine/doctrine-bundle" : " ^2.8.0" ,
22
- "doctrine/orm" : " ^2.14|^3.0" ,
23
21
"league/oauth2-server" : " ^9.2" ,
24
22
"nyholm/psr7" : " ^1.4" ,
25
23
"psr/http-factory" : " ^1.0" ,
34
32
"require-dev" : {
35
33
"ext-pdo" : " *" ,
36
34
"ext-pdo_sqlite" : " *" ,
35
+ "doctrine/doctrine-bundle" : " ^2.8.0" ,
36
+ "doctrine/orm" : " ^2.14|^3.0" ,
37
37
"symfony/browser-kit" : " ^6.4|^7.0" ,
38
38
"symfony/phpunit-bridge" : " ^7.2"
39
39
},
40
+ "conflict" : {
41
+ "doctrine/doctrine-bundle" : " <2.8.0" ,
42
+ "doctrine/orm" : " <2.14"
43
+ },
44
+ "suggest" : {
45
+ "doctrine/doctrine-bundle" : " Allow usage of doctrine as persistence layer" ,
46
+ "doctrine/orm" : " Allow usage of doctrine as persistence layer"
47
+ },
40
48
"autoload" : {
41
49
"psr-4" : { "League\\ Bundle\\ OAuth2ServerBundle\\ " : " src/" }
42
50
},
You can’t perform that action at this time.
0 commit comments