-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.22 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.22 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
55
56
57
58
59
{
"name": "erudika/para-client-php",
"description": "PHP Client for Para",
"keywords": [
"para",
"backend",
"api",
"paraio"
],
"config": {
"platform": {"php": "8.2.0"},
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"homepage": "https://paraio.org",
"license": "Apache-2.0",
"authors": [
{
"name": "Alex Bogdanovski <alex@erudika.com>",
"homepage": "https://erudika.com"
}
],
"require": {
"php": ">=8.2.0",
"aws/aws-sdk-php": "~3.371.4",
"guzzlehttp/guzzle": "~7.10.0"
},
"require-dev": {
"phpunit/phpunit": "~10.5.60",
"phpstan/phpstan": "^2.1.33",
"squizlabs/php_codesniffer": "^4.0.1",
"friendsofphp/php-cs-fixer": "^3.16",
"vimeo/psalm": "^5.21",
"testcontainers/testcontainers": "^1.0.3"
},
"autoload": {
"psr-4": {
"Para\\": "src/Para/"
}
},
"autoload-dev": {
"psr-4": {
"Para\\Tests\\": "tests/Para/Tests/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse",
"cs:check": "php-cs-fixer fix --diff --dry-run",
"cs:fix": "php-cs-fixer fix",
"lint": [
"@phpstan",
"@cs:check"
]
}
}