-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
39 lines (39 loc) · 1.04 KB
/
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
39
{
"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": ">=8.2",
"symfony/mailer": "^6.2"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.5",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-latest",
"symfony/process": "^6.2"
},
"license": "MIT",
"authors": [
{
"name": "theUniC",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"bin-dir": "bin/",
"sort-packages": true
},
"autoload": {
"psr-4": {
"BirthdayGreetingsKata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\BirthdayGreetingsKata\\": "tests/"
}
}
}