generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.23 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
{
"name": "nikspyratos/investec-sdk-php",
"description": "Investec SDK for PHP",
"keywords": [
"Investec",
"SDK"
],
"homepage": "https://github.com/nikspyratos/investec-sdk-php",
"license": "MIT",
"authors": [
{
"name": "Nik Spyratos",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"dragon-code/simple-dto": "^2.7",
"nesbot/carbon": "^2.72.2|^3.0",
"saloonphp/saloon": "^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"laravel/pint": "^1.8",
"pestphp/pest": "^2.4",
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.15.24",
"tightenco/duster": "^2.4",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"psr-4": {
"InvestecSdkPhp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"InvestecSdkPhp\\Tests\\": "tests"
}
},
"scripts": {
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}