proxitok/composer.json

35 lines
970 B
JSON
Raw Normal View History

2022-01-01 19:14:57 +00:00
{
2022-01-02 00:05:32 +00:00
"name": "pablouser1/tiktok-viewer",
"description": "An alternative frontend for TikTok",
"version": "1.1.1",
"license": "AGPL-3.0-or-later",
2022-01-01 19:14:57 +00:00
"require": {
"ext-curl": "*",
2022-01-01 19:14:57 +00:00
"ssovit/tiktok-api": "^2.0",
2022-01-03 12:43:22 +00:00
"steampixel/simple-php-router": "^0.7.0",
"latte/latte": "^2.10",
2022-01-08 15:03:57 +00:00
"vlucas/phpdotenv": "^5.4",
"cweagans/composer-patches": "^1.7"
2022-01-03 23:18:13 +00:00
},
"autoload": {
"psr-4": {
"Helpers\\": "helpers/"
}
},
2022-01-08 15:03:57 +00:00
"config": {
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"extra": {
"patches": {
"ssovit/tiktok-api": [
"patches/0001-Fixed-getUser.patch",
"patches/0002-Added-support-for-username-as-well-as-user-id.patch",
"patches/0003-Fixed-getVideoByUrl.patch",
"patches/0004-Allow-IDs-from-Android-iOS-share.patch"
2022-01-08 15:03:57 +00:00
]
}
2022-01-01 19:14:57 +00:00
}
}