-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.3 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "pixelbin/pixelbin",
"version": "1.0.1",
"description": "Pixelbin Backend SDK for PHP helps you integrate the core Pixelbin features with your application.",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"pixelbin",
"api",
"sdk",
"image management"
],
"homepage": "https://www.pixelbin.io/",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.9",
"justinrainbow/json-schema": "^6.5",
"amphp/parallel": "^2.3",
"amphp/parallel-functions": "^2.0",
"amphp/amp": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"mockery/mockery": "^1.6",
"dms/phpunit-arraysubset-asserts": "^0.5.0"
},
"autoload": {
"psr-4": {
"Pixelbin\\": "Pixelbin/"
},
"files": [
"Pixelbin/Common/Constants.php"
]
},
"autoload-dev": {
"psr-4": {
"Pixelbin\\Tests\\": "tests/"
},
"files": [
"Pixelbin/Common/Constants.php",
"tests/Utils/test_utils.php"
]
},
"scripts": {
"test": "phpunit --no-coverage",
"test:coverage": "phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}