Skip to content

Commit 0817b29

Browse files
committed
Add implicit dependencies
1 parent 480cc3d commit 0817b29

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

README.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,14 @@ A minimal skeleton to start with a minimal php project.
2828
* [chubbyphp/chubbyphp-framework-router-fastroute][22]: ^1.2
2929
* [chubbyphp/chubbyphp-laminas-config][23]: ^1.2.1
3030
* [monolog/monolog][24]: ^2.2
31-
* [slim/psr7][25]: ^1.4
32-
* [symfony/console][26]: ^4.4.23|^5.2.8
31+
* [psr/container][25]: ^1.1|^2.0
32+
* [psr/http-factory][26]: ^1.0.1
33+
* [psr/http-message][27]: ^1.0.1
34+
* [psr/http-server-handler][28]: ^1.0.1
35+
* [psr/http-server-middleware][29]: ^1.0.1
36+
* [psr/log][30]: ^1.1.4
37+
* [slim/psr7][31]: ^1.4
38+
* [symfony/console][32]: ^4.4.23|^5.2.8
3339

3440
## Installation
3541

@@ -58,5 +64,11 @@ Dominik Zogg 2021
5864
[22]: https://packagist.org/packages/chubbyphp/chubbyphp-framework-router-fastroute
5965
[23]: https://packagist.org/packages/chubbyphp/chubbyphp-laminas-config
6066
[24]: https://packagist.org/packages/monolog/monolog
61-
[25]: https://packagist.org/packages/slim/psr7
62-
[26]: https://packagist.org/packages/symfony/console
67+
[25]: https://packagist.org/packages/psr/container
68+
[26]: https://packagist.org/packages/psr/http-factory
69+
[27]: https://packagist.org/packages/psr/http-message
70+
[28]: https://packagist.org/packages/psr/http-server-handler
71+
[29]: https://packagist.org/packages/psr/http-server-middleware
72+
[30]: https://packagist.org/packages/psr/log
73+
[31]: https://packagist.org/packages/slim/psr7
74+
[32]: https://packagist.org/packages/symfony/console

composer.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,18 @@
1111
],
1212
"require": {
1313
"php": "^7.4|^8.0",
14+
"ext-json": "*",
1415
"chubbyphp/chubbyphp-clean-directories": "^1.1.1",
15-
"chubbyphp/chubbyphp-framework": "^3.5",
1616
"chubbyphp/chubbyphp-framework-router-fastroute": "^1.2",
17+
"chubbyphp/chubbyphp-framework": "^3.5",
1718
"chubbyphp/chubbyphp-laminas-config": "^1.2.1",
1819
"monolog/monolog": "^2.2",
20+
"psr/container": "^1.1|^2.0",
21+
"psr/http-factory": "^1.0.1",
22+
"psr/http-message": "^1.0.1",
23+
"psr/http-server-handler": "^1.0.1",
24+
"psr/http-server-middleware": "^1.0.1",
25+
"psr/log": "^1.1.4",
1926
"slim/psr7": "^1.4",
2027
"symfony/console": "^4.4.23|^5.2.8"
2128
},

0 commit comments

Comments
 (0)