-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathcomposer.json
More file actions
89 lines (89 loc) · 2.15 KB
/
composer.json
File metadata and controls
89 lines (89 loc) · 2.15 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
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
81
82
83
84
85
86
87
88
89
{
"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": "ghazi.triki@riadvice.tn",
"role": "Developer"
},
{
"name": "Tim Korn",
"email": "korn@aufKurs.de",
"role": "Developer"
}
],
"repositories": {
"packagist": {
"url": "https://packagist.org",
"type": "composer"
}
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1"
},
"require-dev": {
"bmitch/churn-php": "^1.7",
"captainhook/captainhook": "^5.23",
"captainhook/hook-installer": "^1.0",
"fakerphp/faker": "^1.23",
"friendsofphp/php-cs-fixer": "^3.54",
"guzzlehttp/guzzle": "^7.9",
"nunomaduro/phpinsights": "^2.11",
"phpstan/phpstan": "^1.10",
"phpunit/php-code-coverage": "^10.1",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.9",
"tracy/tracy": "^2.10",
"vlucas/phpdotenv": "^5.6",
"wapmorgan/php-deprecation-detector": "^2.0"
},
"scripts": {
"code-check": "./vendor/bin/phpstan analyse",
"code-test": "./vendor/bin/phpunit",
"code-fix": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --allow-risky yes",
"sniffer": "./vendor/bin/phpcs src/",
"phpinsights": "./vendor/bin/phpinsights",
"phpdd": "./vendor/bin/phpdd --target 8.0 src/",
"churn": "./vendor/bin/churn run src/"
},
"options": {
"symlink": false
},
"autoload": {
"psr-4": {
"BigBlueButton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BigBlueButton\\": [
"src",
"dev",
"tests"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"captainhook/captainhook-phar": true,
"captainhook/hook-installer": true
}
}
}