2014-01-08 20:34:46 +01:00
|
|
|
{
|
|
|
|
"name": "domnikl/design-patterns-php",
|
|
|
|
"description": "Sample code for several design patterns in PHP",
|
2019-12-14 12:50:05 +01:00
|
|
|
"license": ["MIT"],
|
2014-01-08 20:34:46 +01:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Dominik Liebler",
|
|
|
|
"email": "liebler.dominik@googlemail.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"minimum-stability": "stable",
|
2016-09-21 14:34:24 +02:00
|
|
|
"require": {
|
2021-04-12 14:04:45 +02:00
|
|
|
"php": ">=8.0",
|
2019-08-27 21:26:13 +02:00
|
|
|
"psr/http-message": "^1.0",
|
|
|
|
"ext-json": "*"
|
2016-09-21 14:34:24 +02:00
|
|
|
},
|
2014-01-08 20:34:46 +01:00
|
|
|
"require-dev": {
|
2020-04-03 14:18:36 +02:00
|
|
|
"phpunit/phpunit": "^9",
|
2019-08-26 06:31:47 +02:00
|
|
|
"squizlabs/php_codesniffer": "^3",
|
2021-04-12 14:04:45 +02:00
|
|
|
"vimeo/psalm": "^4",
|
2020-04-03 14:18:36 +02:00
|
|
|
"psalm/plugin-phpunit": "*",
|
|
|
|
"rector/rector": "*"
|
2014-01-08 20:34:46 +01:00
|
|
|
},
|
|
|
|
"autoload": {
|
2019-12-14 12:50:05 +01:00
|
|
|
"classmap": ["Behavioral", "Creational", "Structural", "More"]
|
2014-01-08 20:34:46 +01:00
|
|
|
}
|
2019-08-26 06:31:47 +02:00
|
|
|
}
|