-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.46 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
{
"name": "vanio/type-parser",
"description": "Library for parsing property types defined using @var PHPDoc annotation",
"keywords": ["type", "var", "annotation", "docblock", "parser", "type resolver"],
"homepage": "https://github.com/vaniocz/type-parser",
"license": "MIT",
"authors": [
{"name": "Marek Štípek", "email": "[email protected]"}
],
"require": {
"php": "^7.0",
"doctrine/annotations": "^1.2",
"doctrine/cache": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^6.5.14",
"symfony/dependency-injection": "^3.4.26",
"symfony/config": "^3.0",
"symfony/http-foundation": "^3.4.35",
"symfony/http-kernel": "^3.0",
"vanio/coding-standards": "^0.2@dev"
},
"autoload": {
"psr-4": {"Vanio\\TypeParser\\": "src/"},
"exclude-from-classmap": ["/tests/"]
},
"autoload-dev": {
"psr-4": {"Vanio\\TypeParser\\Tests\\": "tests/"}
},
"scripts": {
"test": "\"vendor/bin/phpunit\"",
"lint": "\"vendor/bin/phpcs\" -s --standard=vendor/vanio/coding-standards/ruleset.xml --extensions=php --encoding=utf-8 --ignore=vendor,tests/Fixtures .",
"fix": "\"vendor/bin/phpcbf\" --standard=vendor/vanio/coding-standards/ruleset.xml --extensions=php --encoding=utf-8 --no-patch --ignore=vendor,tests/Fixtures ."
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}