-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
50 lines (50 loc) · 1.32 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
{
"name": "friendsofapi/sylius-api-client",
"description": "A client for Sylius APIs",
"license": "MIT",
"keywords": ["api", "sylius"],
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
},
{
"name": "Márk Sági-Kazár",
"email": "mark.sagikazar@gmail.com"
},
{
"name": "Kasim Taskin",
"email": "taskinkasim@gmail.com"
}
],
"require": {
"php": "^7.1",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/multipart-stream-builder": "^1.0",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"php-http/message-factory": "^1.0",
"php-http/curl-client": "^2.0",
"php-http/message": "^1.0",
"symfony/http-client": "^5.0",
"nyholm/nsa": "^1.1",
"nyholm/psr7": "^1.3"
},
"autoload": {
"psr-4": {
"FAPI\\Sylius\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FAPI\\Boilerplate\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}