-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (57 loc) · 1.31 KB
/
composer.json
File metadata and controls
58 lines (57 loc) · 1.31 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
{
"name": "flagship-io/flagship-php-sdk",
"type": "library",
"description": "Flagship PHP SDK",
"keywords": [
"flagship",
"sdk",
"flagship-php"
],
"homepage": "https://github.com/flagship-io/flagship-php-sdk",
"authors": [
{
"name": "Flagship.io"
}
],
"license": "Apache-2.0",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"psr/log": "^3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"php-mock/php-mock-phpunit": "^2.14"
},
"autoload": {
"psr-4": {
"Flagship\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Flagship\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test:all": [
"@phpstan:all",
"phpunit"
],
"check-style": "phpcs --standard=PSR12 -n src tests",
"fix-style": "phpcbf --standard=phpcs.xml src tests",
"phpstan": "phpstan analyse --configuration=phpstan.neon --memory-limit=512M",
"phpstan:future": "phpstan analyse --configuration=phpstan-future.neon --memory-limit=512M",
"phpstan:all": [
"@phpstan",
"@phpstan:future"
]
}
}