-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
40 lines (40 loc) · 1015 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
39
40
{
"name": "myrzan/tecdoc-php-client",
"description": "TecDoc API PHP client",
"license": ["LGPL-3.0-only"],
"type": "library",
"authors": [
{
"name": "Stephan Baumeister",
"email": "stephan@baumeister.name"
},
{
"name": "Daulet Myrzan",
"email": "dauletmyrzan@gmail.com"
}
],
"scripts": {
"xsd2php": "xsd2php convert xsd2php-config.yml TecdocToCatDLB.xsd"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5",
"netresearch/jsonmapper": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"goetas-webservices/xsd2php": "^0.3.11"
},
"autoload": {
"psr-4": {
"Myrzan\\TecDocClient\\": "src/",
"Myrzan\\TecDocClient\\Generated\\": "generated/"
}
},
"autoload-dev": {
"psr-4": {
"Myrzan\\TecDocClient\\Tests\\": "tests/"
}
}
}