-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
54 lines (54 loc) · 1.24 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
{
"name": "eppo/php-sdk",
"description": "Eppo PHP SDK",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Eppo-exp/php-sdk",
"authors": [
{
"name": "Pavlo Khrebto",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Eppo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Eppo\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ext-json": "*",
"psr/simple-cache": "3.*",
"shrikeh/teapot": "^2.3",
"composer/semver": "^3.4",
"php-http/discovery": "^1.17",
"webclient/ext-redirect": "^2.0",
"symfony/cache": "^6.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"google/cloud-storage": "^1.30",
"ext-posix": "*",
"ext-pcntl": "*",
"psr-mock/http": "^1.0",
"squizlabs/php_codesniffer": "^3.10",
"ext-sockets": "*"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=PSR12 ./src",
"lint-fix": "./vendor/bin/phpcbf --standard=PSR12 ./src",
"lint-tests": "./vendor/bin/phpcs --standard=PSR12 ./tests",
"lint-fix-tests": "./vendor/bin/phpcbf --standard=PSR12 ./tests"
}
}