-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 877 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
{
"name": "zebooka/photos-downloader",
"description": "If your pictures aren't good enough, you're not close enough. — Robert Capa",
"license": "MIT",
"authors": [
{
"name": "Anton Bondar",
"email": "[email protected]",
"homepage": "https://zebooka.com/"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Zebooka\\": "src/"
}
},
"require": {
"php": "7.3 - 8.4",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"monolog/monolog": "^1.7",
"php81_bc/strftime": "^0.5.0"
},
"autoload-dev": {
"psr-4": {
"Zebooka\\": ["tests/unit/","tests/integration/"]
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.5"
}
}