-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 1.13 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
{
"name": "troiastudio/youtube-api",
"description": "Youtube API",
"homepage": "https://jan-galek.cz",
"type": "project",
"license": "GPL-3.0",
"authors": [
{
"name": "Jan Galek",
"homepage": "https://jan-galek.cz"
}
],
"autoload": {
"psr-4": {
"TroiaStudio\\YoutubeAPI\\": "src/TroiaStudio/Utils/Youtube-API",
"TroiaStudio\\YoutubeAPI\\DI\\": "src/TroiaStudio/Utils/Youtube-API/DI"
}
},
"require": {
"php": ">= 7.1",
"ext-json": "*",
"nette/di": "^2.4",
"nette/utils": "^2.4",
"guzzlehttp/guzzle": "^6.2",
"nette/http": "^2.4",
"composer/ca-bundle": "^1.0",
"symfony/yaml": "^3.4.12|^4.1"
},
"require-dev": {
"nette/tester": "^1.7",
"tracy/tracy": "@dev",
"phpstan/phpstan": "^0.10.5"
},
"scripts": {
"cs": "php temp/coding-standard/ecs check src/ tests/ --config temp/coding-standard/coding-standard-php71.yml",
"fs": "php temp/coding-standard/ecs check src/ tests/ --config tests/coding-standard/coding-standard-php71.yml --fix"
}
}