-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.52 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
{
"name": "nekofar/virgool",
"version": "0.1.0",
"description": "PHP wrapper for the Virgool API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Milad Nekofar",
"email": "milad@nekofar.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.6.0",
"ext-json": "*",
"netresearch/jsonmapper": "^1.5",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"escapestudios/symfony2-coding-standard": "^3.8",
"guzzlehttp/psr7": "^1.0",
"jchook/phpunit-assert-throws": "^1.0",
"php-http/curl-client": "^1.0",
"php-http/message": "^1.0",
"php-http/mock-client": "^1.0",
"phpcompatibility/php-compatibility": "^9.2",
"phpunit/phpunit": "^8.2",
"squizlabs/php_codesniffer": "^3.4",
"vlucas/phpdotenv": "^3.4"
},
"autoload": {
"psr-4": {
"Nekofar\\Virgool\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nekofar\\Virgool\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"phpcs": "vendor/bin/phpcs"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist"
}
}