-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (52 loc) · 1.72 KB
/
composer.json
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
{
"name": "elan-ev/opencast-api",
"description": "A comprehensive PHP library for Opencast",
"license": "GPL-3.0-or-later",
"keywords": [
"Opencast",
"API",
"RESTful"
],
"authors": [
{
"name": "Farbod Zamani Boroujeni",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/elan-ev/opencast-php-library/issues"
},
"homepage": "https://docs.opencast.org/",
"require": {
"php": ">=7.2.5",
"guzzlehttp/guzzle": ">=7.5.1"
},
"autoload": {
"psr-4": {
"OpencastApi\\": "src/OpencastApi/",
"OpencastApi\\Rest\\": "src/OpencastApi/Rest/",
"OpencastApi\\Mock\\": "src/OpencastApi/Mock/"
}
},
"scripts": {
"sniffer:php7.4": "phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 7.4",
"sniffer:php8.0": "phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.0",
"sniffer:php8.1": "phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.1",
"sniffer:php8.2": "phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}