forked from theUniC/birthday-greetings-kata-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1020 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "theunic/birthay-greetings-kata-php",
"description": "A simple refactoring exercise that is meant to teach something about dependency inversion and dependency injection",
"version": "2.0.0",
"keywords": ["kata", "practice", "coding dojo", "dojo", "birthday", "birthday-kata"],
"require": {
"ext-json": "*",
"php": "^7.4|^8.0",
"swiftmailer/swiftmailer": "^6.1"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"symfony/process": "^5.1",
"guzzlehttp/guzzle": "^6.3"
},
"license": "MIT",
"authors": [
{
"name": "theUniC",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-4": {
"BirthdayGreetingsKata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\BirthdayGreetingsKata\\": "tests/"
}
},
"bin": ["src/app.php"]
}