-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.44 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.44 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
47
48
49
50
51
52
53
54
{
"config": {
"vendor-dir": "includes/vendor"
},
"require": {
"php": ">=8.3",
"aws/aws-sdk-php": "~3",
"ezyang/htmlpurifier": "~4.9",
"phpmailer/phpmailer": "~6.1",
"sunra/php-simple-html-dom-parser": "1.5.2",
"openva/rs-video-processor": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpcompatibility/php-compatibility": "^9.3",
"squizlabs/php_codesniffer": "^3.10"
},
"autoload": {
"psr-4": {
"RsMachine\\": "includes/"
}
},
"autoload-dev": {
"psr-4": {
"RsMachine\\Tests\\": "deploy/tests/"
}
},
"scripts": {
"post-install-cmd": [
"php deploy/fix_video_processor_autoload.php"
],
"post-update-cmd": [
"php deploy/fix_video_processor_autoload.php"
]
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:openva/rs-video-processor.git"
},
{
"type": "package",
"package": {
"name": "romainneutron/sphinx-search-api-php-client",
"version": "2.0.8.1",
"source": {
"url": "https://github.com/romainneutron/Sphinx-Search-API-PHP-Client/",
"type": "git",
"reference": "origin/master"
}
}
}
]
}