-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.35 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "openva/rs-video-processor",
"description": "Richmond Sunlight video processor utilities",
"license": "MIT",
"config": {
"vendor-dir": "includes/vendor"
},
"repositories": {
"sphinx-search-api-php-client": {
"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"
}
}
}
},
"require": {
"php": "^8.0",
"phpmailer/phpmailer": "^6.5",
"ezyang/htmlpurifier": "^4.13",
"doctrine/instantiator": "^2.0",
"simplepie/simplepie": "^1.7",
"romainneutron/sphinx-search-api-php-client": "2.0.8.1",
"aws/aws-sdk-php": "^3.186",
"symfony/yaml": "^7.4"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"RichmondSunlight\\VideoProcessor\\": "src/"
},
"files": [
"includes/functions.inc.php"
]
},
"autoload-dev": {
"psr-4": {
"RichmondSunlight\\VideoProcessor\\Tests\\": "tests/"
}
}
}