Lint JSON

This commit is contained in:
Pierre Rudloff 2016-02-13 16:20:25 +01:00
parent 9e8599ab6a
commit 2333030f78

View file

@ -1,68 +1,63 @@
{ {
"name": "rudloff/alltube", "name": "rudloff/alltube",
"description": "HTML GUI for youtube-dl", "description": "HTML GUI for youtube-dl",
"license": "GPL-3.0", "license": "GPL-3.0",
"homepage": "http://alltubedownload.net/", "homepage": "http://alltubedownload.net/",
"type": "project", "type": "project",
"require": { "require": {
"smarty/smarty": "~3.1.29", "smarty/smarty": "~3.1.29",
"rg3/youtube-dl": "2016.02.01", "rg3/youtube-dl": "2016.02.01",
"slim/slim": "~2.6.2", "slim/slim": "~2.6.2",
"slim/views": "~0.1.3", "slim/views": "~0.1.3",
"rudloff/smarty-plugin-noscheme": "~0.1.0", "rudloff/smarty-plugin-noscheme": "~0.1.0",
"symfony/yaml": "~3.0.0", "symfony/yaml": "~3.0.0",
"ffmpeg/ffmpeg": "~2.8.2" "ffmpeg/ffmpeg": "~2.8.2"
}, },
"require-dev": { "require-dev": {
"symfony/var-dumper": "~3.0.0" "symfony/var-dumper": "~3.0.0"
}, },
"extra": { "extra": {
"paas": { "paas": {
"nginx-includes": [ "nginx-includes": [
"nginx.conf" "nginx.conf"
] ]
} }
}, },
"repositories": [ "repositories": [{
{ "type": "package",
"type": "package", "package": {
"package": { "name": "rg3/youtube-dl",
"name": "rg3/youtube-dl", "version": "2016.02.01",
"version": "2016.02.01", "source": {
"source": { "url": "https://github.com/rg3/youtube-dl.git",
"url": "https://github.com/rg3/youtube-dl.git", "type": "git",
"type": "git", "reference": "2016.02.01"
"reference": "2016.02.01" }
} }
} }, {
}, "type": "package",
{ "package": {
"type": "package", "name": "ffmpeg/ffmpeg",
"package": { "version": "2.8.4",
"name": "ffmpeg/ffmpeg", "dist": {
"version": "2.8.4", "url": "http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz",
"dist": { "type": "xz"
"url": "http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz", },
"type": "xz" "bin": [
}, "ffmpeg"
"bin": [ ]
"ffmpeg" }
] }],
} "authors": [{
} "name": "Pierre Rudloff",
], "email": "contact@rudloff.pro",
"authors": [ "homepage": "https://rudloff.pro/",
{ "role": "Developer"
"name": "Pierre Rudloff", }],
"email": "contact@rudloff.pro", "autoload": {
"homepage": "https://rudloff.pro/", "psr-4": {
"role": "Developer" "Alltube\\": "classes/",
} "Alltube\\Controller\\": "controllers/"
], }
"autoload": { }
"psr-4": {
"Alltube\\": "classes/",
"Alltube\\Controller\\": "controllers/"
}
}
} }