-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (37 loc) · 918 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
37
38
{
"name": "aspose/aspose-omr-cloud",
"description": "PHP library for communicating with the Aspose.OMR Cloud API",
"keywords": [
"Aspose",
"Cloud",
"SDK",
"OMR",
"PHP"
],
"homepage": "https://github.com/aspose-omr-cloud/aspose-omr-cloud-php",
"license": "MIT",
"authors": [
{
"name": "Aspose Pty Ltd",
"homepage": "https://www.aspose.com"
}
],
"require": {
"php": ">=5.5",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "9.5",
"squizlabs/php_codesniffer": "~2.6",
"friendsofphp/php-cs-fixer": "^1.12 || ^2.10"
},
"autoload": {
"psr-4": { "Aspose\\Omr\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "Aspose\\Omr\\" : "test/" }
}
}