-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 976 Bytes
/
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
{
"name": "lucisgit/php-panopto-api",
"type": "library",
"description": "PHP Panopto API client and libraries.",
"homepage": "http://github.com/lucisgit/php-panopto-api",
"keywords": ["panopto", "api", "php", "soap"],
"license": "GPL-3.0+",
"authors": [
{
"name": "Lancaster University ISS",
"homepage": "http://www.lancaster.ac.uk"
},
{
"name": "Ruslan Kabalin",
"homepage": "http://github.com/kabalin",
"role": "Developer"
}
],
"repositories": [
{
"type": "github",
"url": "https://github.com/tonyjbutler/wsdl2phpgenerator.git"
}
],
"require": {
"php": "^8.0",
"ext-soap": "*"
},
"require-dev": {
"wsdl2phpgenerator/wsdl2phpgenerator": "^3.5"
},
"autoload": {
"psr-4": { "Panopto\\": "lib/" },
"exclude-from-classmap": ["/examples/"]
}
}