-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.26 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.26 KB
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
51
52
53
54
{
"name": "joonweb/joonweb-sdk",
"description": "Professional PHP SDK for building applications on the JoonWeb platform",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "JoonWeb",
"email": "support@joonweb.com",
"homepage": "https://www.joonweb.com"
}
],
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"JoonWeb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JoonWeb\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"scripts": {
"test": "phpunit tests/",
"test-coverage": "phpunit tests/ --coverage-html coverage/"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"keywords": [
"joonweb",
"sdk",
"api",
"ecommerce",
"platform"
],
"support": {
"email": "support@joonweb.com",
"issues": "https://github.com/joonwebdotcom/joonweb-php-sdk/issues",
"source": "https://github.com/joonwebdotcom/joonweb-php-sdk"
}
}