-
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.36 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.36 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": "fastpix/sdk",
"version": "1.0.2",
"type": "library",
"autoload": {
"psr-4": {
"FastPix\\Sdk\\": "src/"
}
},
"description": "FastPix PHP SDK for media, live streaming, playlists, analytics, and signing keys",
"license": "MIT",
"authors": [
{
"name": "FastPix",
"email": "devs@fastpix.io",
"homepage": "https://www.fastpix.io"
}
],
"require": {
"php": ">=8.2",
"galbar/jsonpath": "^3.0",
"guzzlehttp/guzzle": "^7.0",
"doctrine/instantiator": "^1.3.1 || ^2.0",
"doctrine/lexer": "^2.0 || ^3.0",
"jms/metadata": "^2.6",
"phpstan/phpdoc-parser": "^1.4.5 || ^2.1",
"brick/date-time": "^0.7 || ^0.9",
"phpdocumentor/type-resolver": "^1.8 || ^2.0",
"brick/math": "^0.12 || ^0.14"
},
"require-dev": {
"laravel/pint": ">=1.21.2",
"phpstan/phpstan": ">=2.1.0",
"phpunit/phpunit": ">=10",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true,
"process-timeout": 60,
"platform-check": false
},
"scripts": {
"test": [
"./vendor/bin/phpunit --testdox --display-warnings --colors=always"
],
"stan": [
"./vendor/bin/phpstan analyse --memory-limit=2g --error-format=table"
]
}
}