-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "nsrosenqvist/php-api-toolkit",
"license": "MIT",
"description": "A versatile toolkit for easily integrating with remote APIs",
"homepage": "https://github.com/nsrosenqvist/php-api-toolkit",
"authors": [
{
"name": "Niklas Rosenqvist",
"email": "niklas.s.rosenqvist@gmail.com",
"homepage": "https://www.nsrosenqvist.com/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"NSRosenqvist\\ApiToolkit\\": "src/"
},
"files": ["src/helpers.php"]
},
"autoload-dev": {
"psr-4": {
"NSRosenqvist\\ApiToolkit\\Tests\\": "tests/resources/src/"
}
},
"require": {
"php": ">=7.4.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"guzzlehttp/guzzle": "^7.5",
"jrfnl/php-cast-to-type": "^2.1",
"illuminate/support": ">=5.5"
},
"require-dev": {
"pestphp/pest": "^1.22",
"ramsey/composer-repl": "^1.4",
"minicli/minicli": "^3.2",
"symfony/yaml": "^6.2",
"adhocore/json-comment": "^1.2",
"squizlabs/php_codesniffer": "^3.7",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/php-compatibility": "^9.3"
},
"suggest": {
"symfony/yaml": "Allows parsing Yaml mock manifests",
"adhocore/json-comment": "Allows parsing JsonC mock manifests"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"ramsey/composer-repl": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": "@test:local",
"test:local": "./vendor/bin/pest",
"test:remote": "TEST_REMOTE=true ./vendor/bin/pest",
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage",
"release": "@php ./dev/release.php",
"setup": "@php ./dev/setup.php",
"lint": "./vendor/bin/phpcs -p . --standard=phpcs.xml",
"post-install-cmd": "@setup"
},
"extra": {
"title": "PHP API Toolkit",
"ramsey/composer-repl": {
"includes": [
"vendor/autoload.php"
]
}
}
}