-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
58 lines (58 loc) · 1.43 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "cyklokoalicia/opensource-bikeshare",
"description": "The world's first low-cost and open source bike sharing system.",
"minimum-stability": "stable",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Volodymyr Panivko",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BikeShare\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\BikeShare\\": "tests/"
}
},
"require": {
"php": "^7.4",
"phpmailer/phpmailer": "^6.5.0",
"tecnickcom/tcpdf": "^6.2.6",
"ext-json": "*",
"ext-mysqli": "*",
"ext-gettext": "*",
"ext-curl": "*",
"monolog/monolog": "^1.27",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/framework-bundle": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/config": "^5.4",
"symfony/expression-language": "^5.4",
"symfony/monolog-bundle": "^3.10",
"symfony/console": "^5.4",
"symfony/runtime": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/dotenv": "^5.4",
"symfony/translation": "^5.4",
"symfony/asset": "^5.4",
"symfony/security-bundle": "^5.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10|^4.0",
"phpunit/phpunit": "^9.5",
"php-mock/php-mock-phpunit": "^2.3",
"rector/rector": "^1.1"
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"symfony/flex": true
}
}
}