-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.36 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.36 KB
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
{
"name": "yiistack/annotated",
"type": "library",
"description": "annotated",
"keywords": [
"annotation"
],
"license": "MIT",
"support": {
"issues": "https://github.com/yiistack/annotated/issues?state=open",
"wiki": "https://github.com/yiistack/annotated/wiki",
"source": "https://github.com/yiistack/annotated"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0",
"spiral/tokenizer": "^2.1",
"doctrine/annotations": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"roave/infection-static-analysis-plugin": "^1.5",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^4.2"
},
"autoload": {
"psr-4": {
"Yiistack\\Annotated\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yiistack\\Annotated\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"test": "phpunit --testdox --no-interaction",
"test-watch": "phpunit-watcher watch"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"composer/package-versions-deprecated": true
}
}
}