-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 856 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
{
"name": "kubinyete/template-sdk-php",
"description": "Base template for generating highly optimized webservice SDKs",
"type": "project",
"autoload": {
"psr-4": {
"Kubinyete\\TemplateSdkPhp\\": "src/"
}
},
"authors": [
{
"name": "Vitor Kubinyete",
"email": "[email protected]"
}
],
"autoload-dev": {
"psr-4": {
"Kubinyete\\TemplateSdkPhp\\Tests\\": "tests/"
}
},
"require": {
"guzzlehttp/guzzle": ">=6.0",
"kubinyete/assertation": "^1.0",
"psr/log": "^1.1",
"symfony/polyfill-php81": "^1.28",
"symfony/polyfill-php80": "^1.28"
},
"require-dev": {
"symfony/var-dumper": "^5.4",
"fakerphp/faker": "^1.23",
"phpunit/phpunit": "^9.6"
}
}