-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
42 lines (42 loc) · 1.21 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
40
41
42
{
"authors": [
{
"name": "Matthias Noback",
"email": "[email protected]"
}
],
"require-dev": {
"phpstan/phpstan": "^0.12.52",
"phpstan/phpstan-beberlei-assert": "^0.12.3",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpunit/phpunit": "^9.4",
"behat/mink-extension": "^2.3",
"behat/mink-goutte-driver": "^1.2",
"matthiasnoback/phpunit-asynchronicity": "^2.3"
},
"require": {
"php": "^7.4",
"roave/security-advisories": "dev-master",
"doctrine/dbal": "^2.12",
"matthiasnoback/php-workshop-tools": "^0.34.0",
"symfony/intl": "^5.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0",
"thecodingmachine/safe": "^1.3"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\UseCases\\": "test/UseCases",
"Test\\EndToEnd\\": "test/EndToEnd",
"Test\\Adapter\\": "test/Adapter",
"Test\\Common\\": "test/Common",
"": "test/Unit"
},
"files": ["src/MeetupOrganizing/Infrastructure/Framework/functions.php"]
}
}