-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
60 lines (60 loc) · 1.45 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
{
"name" : "vitormattos/blueprint-sdk-maker",
"description" : "Create SDK client from API Blueprint",
"license" : "MIT",
"type" : "library",
"homepage" : "https://github.com/vitormattos/blueprint-sdk-maker",
"authors" : [{
"name" : "Vitor Mattos",
"homepage" : "https://github.com/vitormattos"
}
],
"support" : {
"source" : "https://github.com/vitormattos/blueprint-sdk-maker/tree/master",
"issues" : "https://github.com/vitormattos/blueprint-sdk-maker/issues"
},
"keywords" : [
"api",
"blueprint",
"parser",
"apib"
],
"autoload" : {
"psr-4" : {
"BlueprintSdkMaker\\" : "src/Sdk"
}
},
"require" : {
"php" : ">=7.2",
"symfony/console" : "^3.2",
"brianseitel/oasis-mson-parser" : "dev-newest"
},
"require-dev" : {
"nikic/php-parser": "^4.2",
"squizlabs/php_codesniffer" : "3.*",
"overtrue/phplint": "^1.1",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^8",
"phpstan/phpstan": "^0.11.16"
},
"scripts" : {
"phpcs" : "phpcs --standard=PSR2 -n src",
"phpcbf" : "phpcbf --standard=PSR2 -n src",
"unit" : "php -d phar.readonly=0 vendor/bin/phpunit --coverage-clover ./tests/log/clover.xml --colors=always",
"phplint": "phplint ./ --exclude=vendor",
"phpstan" : "phpstan analyse src --level 7",
"test" : [
"@phplint",
"@unit",
"@phpcs"
]
},
"bin" : [
"bin/blueprint-sdk-maker"
],
"repositories" : [{
"type" : "vcs",
"url" : "https://github.com/vitormattos/oasis-mson-parser"
}
]
}