This repository was archived by the owner on Nov 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.33 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.33 KB
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
{
"name": "ptrtn/auto-subtitles",
"description": "Automaticly fetch subtitles from multiple sources for a given video file",
"type": "project",
"require": {
"silex/silex": "^2.0",
"guzzlehttp/guzzle": "^6.2",
"squizlabs/php_codesniffer": "^2.8",
"knplabs/console-service-provider": "^2.0",
"mockery/mockery": "^0.9.9",
"lstrojny/fxmlrpc": "^0.13.0",
"php-http/curl-client": "^1.7",
"guzzlehttp/psr7": "^1.4",
"php-http/message": "^1.5",
"php-http/guzzle6-adapter": "^1.1",
"rpodwika/yaml-config-service-provider": "^1.0",
"webmozart/assert": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"phpmd/phpmd": "^2.6",
"mikey179/vfsStream": "^1.6"
},
"authors": [
{
"name": "Peter Ton",
"email": "mail@peterton.nl"
}
],
"scripts": {
"test": [
"@phpcs",
"@phpmd",
"@phpunit"
],
"phpunit": "vendor/bin/phpunit -c phpunit.xml",
"phpmd": "vendor/bin/phpmd src text phpmd.xml --suffixes php",
"phpcs": "vendor/bin/phpcs --report=full --standard=ruleset.xml src"
},
"autoload": {
"psr-4": { "": "src/" }
},
"autoload-dev": {
"psr-4": { "": "tests/" }
}
}