-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
59 lines (59 loc) · 1.45 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
59
{
"name": "kvz/youtube-id",
"license": "MIT",
"description": "Translates a number to a short alphanumeric version",
"type": "library",
"keywords": [
"youtube id",
"id generator",
"generator",
"id"
],
"homepage": "https://github.com/kvz/youtube-id",
"authors": [
{
"name": "Kevin van Zonneveld",
"role": "lead",
"email": "[email protected]",
"homepage": "https://github.com/kvz"
},
{
"name": "Alexey Samara",
"role": "developer",
"email": "[email protected]",
"homepage": "https://wow-apps.pro"
},
{
"name": "Simon Franz",
"role": "developer"
},
{
"name": "Deadfish",
"role": "developer"
},
{
"name": "SK83RJOSH",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/kvz/youtube-id/issues",
"wiki": "https://github.com/kvz/youtube-id/wiki",
"source": "https://github.com/kvz/youtube-id"
},
"require": {
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "7.5.*",
"friendsofphp/php-cs-fixer": "^2.14"
},
"autoload": {
"psr-4": {
"Kvz\\YoutubeId\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
}
}