-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.2 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
{
"name": "ymirapp/ymir-sdk-php",
"description": "Ymir PHP SDK",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Carl Alexander",
"email": "[email protected]",
"homepage": "https://ymirapp.com"
}
],
"require": {
"php": ">=7.2.5",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"fakerphp/faker": "^1.17",
"friendsofphp/php-cs-fixer": "^3.0",
"php-mock/php-mock-phpunit": "^2.7",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpro/grumphp": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.3",
"sebastian/phpcpd": "^6.0.3"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Ymir\\Sdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ymir\\Sdk\\Tests\\": "tests"
}
}
}