-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 820 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 820 Bytes
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
{
"name": "joebot0101/xml2vtt",
"description": "Converts XML captions files to WebVTT format",
"keywords": ["webvtt", "xml", "converter"],
"homepage": "https://github.com/JoeBot0101/xml2vtt",
"license": "MIT",
"authors": [
{
"name": "Joe Cardella",
"email": "jcardella@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"ext-libxml": "*",
"ext-simplexml": "*"
},
"autoload": {
"psr-4": {
"JoeBot0101\\WebVtt\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"phpcs": "\"vendor/bin/phpcs\" --standard=PSR2 src",
"phpcbf": "\"vendor/bin/phpcbf\" --standard=PSR2 src"
}
}