-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.34 KB
/
Copy pathcomposer.json
File metadata and controls
75 lines (75 loc) · 2.34 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "fleetbase/fleetbase-php",
"description": "Fleetbase\\PHP\\SDK",
"type": "library",
"keywords": ["fleetbase", "logistics-api", "ecommerce-api", "fleetbase-sdk", "fleetbase-api"],
"homepage": "https://github.com/fleetbase/fleetbase-php",
"license": "MIT",
"authors": [
{
"name": "Ronald A. Richardson",
"email": "ron@fleetbase.io",
"homepage": "https://fleetbase.io"
}
],
"support": {
"docs": "https://fleetbase.github.io/fleetbase-php/",
"issues": "https://github.com/fleetbase/fleetbase-php/issues",
"rss": "https://github.com/fleetbase/fleetbase-php/releases.atom",
"source": "https://github.com/fleetbase/fleetbase-php.git",
"wiki": "https://github.com/fleetbase/fleetbase-php/wiki"
},
"require": {
"php": "^7.4",
"doctrine/inflector": "^2.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"mockery/mockery": "^1",
"php-parallel-lint/php-parallel-lint": "^1",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-mockery": "^0.11",
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3",
"vlucas/phpdotenv": "^5.4"
},
"autoload": {
"psr-4": {
"Fleetbase\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fleetbase\\Sdk\\Test\\": "tests/"
}
},
"scripts": {
"lint": "parallel-lint src tests",
"phpcs": "phpcs src tests --standard=psr12 -sp --colors",
"phpstan": [
"phpstan analyse src -c phpstan.neon --level max --no-progress",
"phpstan analyse tests -c phpstan.neon --level 4 --no-progress"
],
"phpunit": "phpunit --verbose --colors=always",
"phpunit-ci": "phpunit --verbose --coverage-clover build/logs/clover.xml",
"phpunit-coverage": "phpunit --verbose --colors=always --coverage-html build/coverage",
"test": [
"@lint",
"@phpcs",
"@phpstan",
"@phpunit"
],
"test-ci": [
"@lint",
"@phpcs",
"@phpstan",
"@phpunit-ci"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}