forked from bigbluebutton/bigbluebutton-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "bigbluebutton/bigbluebutton-api-php",
"type": "library",
"description": "BigBlueButton PHP API Library for PHP",
"keywords": [
"bigbluebutton",
"bbb",
"api"
],
"homepage": "https://bigbluebutton.org/",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Ghazi Triki",
"email": "[email protected]",
"role": "Developer"
}
],
"repositories": {
"packagist": {
"url": "https://packagist.org",
"type": "composer"
}
},
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-mbstring": "*",
"ext-json": "*",
"marc-mabe/php-enum": "^v4.7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.16",
"fakerphp/faker": "^v1.23.1",
"friendsofphp/php-cs-fixer": "^v3.48.0",
"squizlabs/php_codesniffer": "^3.8.1",
"phploc/phploc": "^7.0.2",
"nunomaduro/phpinsights": "^v2.11.0",
"bmitch/churn-php": "^1.7.1",
"phpmetrics/phpmetrics": "^v2.8.2",
"wapmorgan/php-deprecation-detector": "^2.0.33",
"phpstan/phpstan": "^1.10",
"tracy/tracy": "2.9",
"vlucas/phpdotenv": "^5.6",
"phpunit/php-code-coverage": "9.2.30"
},
"scripts": {
"code-check": "./vendor/bin/phpstan analyse",
"code-test": "./vendor/bin/phpunit",
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --allow-risky yes",
"sniffer": "./vendor/bin/phpcs src/",
"phploc": "./vendor/bin/phploc src/",
"phpinsights": "./vendor/bin/phpinsights",
"phpdd": "./vendor/bin/phpdd --target 7.4 src/",
"phpmetrics": "./vendor/bin/phpmetrics --report-html=metrics src/",
"churn": "./vendor/bin/churn run src/"
},
"options": {
"symlink": false
},
"autoload": {
"psr-4": {
"BigBlueButton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BigBlueButton\\": [
"src",
"tests"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}