php-katas-with-pest/composer.json

21 lines
389 B
JSON
Raw Normal View History

2020-07-03 17:16:27 +00:00
{
"minimum-stability": "dev",
"prefer-stable": true,
2020-07-04 07:27:45 +00:00
"require": {
2020-07-04 09:41:21 +00:00
"beberlei/assert": "^3.2",
"tightenco/collect": "^7.12"
2020-07-04 07:27:45 +00:00
},
2020-07-03 17:16:27 +00:00
"require-dev": {
"pestphp/pest": "^0.2.3",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"sort-packages": true
}
}