forked from gpupo/common-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.27 KB
/
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
41
42
43
44
45
46
47
48
49
50
{
"name": "gpupo/common-sdk",
"description": "Componente de uso comum entre SDKs para integração a partir de aplicações PHP com Restful webservices",
"homepage": "https://opensource.gpupo.com/common-sdk/",
"authors": [
{
"name": "Gilmar Pupo",
"email": "[email protected]"
}
],
"keywords": ["sdk"],
"license": "MIT",
"autoload": {
"psr-4": {
"Gpupo\\CommonSdk\\": "src",
"Gpupo\\CommonSdk\\Tests\\": "tests"
}
},
"require": {
"php": "^8.0",
"ext-curl": "*",
"gpupo/common": "^5.4 || ^6.0 || dev-main",
"gpupo/common-schema": "^6.3 || dev-main",
"doctrine/orm": "^2.6",
"psr/http-message": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"symfony/cache": "^5.2"
},
"require-dev": {
"gpupo/common-dev": "* || dev-main"
},
"bin": ["bin/common-sdk"],
"config": {
"preferred-install": "dist"
},
"replace": {
"gpupo/common-sdk": "*"
},
"extra": {
"branch-alias": {
"dev-main": "7.0-dev"
}
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}