forked from segmentio/analytics-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.39 KB
/
composer.json
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
{
"name": "segmentio/analytics-php",
"description": "Segment Analytics PHP Library",
"keywords": [
"analytics",
"segmentio",
"segment",
"analytics.js"
],
"homepage": "https://segment.com/libraries/php",
"license": "MIT",
"authors": [
{
"name": "Segment.io <friends@segment.com>",
"homepage": "https://segment.com/"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~9.5",
"overtrue/phplint": "^3.0",
"squizlabs/php_codesniffer": "^3.6",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^7.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7"
},
"suggest": {
"ext-curl": "For using the curl HTTP client",
"ext-zlib": "For using compression"
},
"autoload": {
"psr-4": {
"Segment\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Segment\\Test\\": "test/"
}
},
"bin": [
"bin/analytics"
],
"scripts": {
"test": "./vendor/bin/phpunit --no-coverage",
"check": "./vendor/bin/phpcs",
"cf": "./vendor/bin/phpcbf",
"coverage": "./vendor/bin/phpunit",
"lint": [
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php,phps --exclude vendor --exclude .git --exclude build"
]
},
"config": {
"allow-plugins": {
"segmentio/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}