-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 825 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 825 Bytes
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
{
"name": "swoft/annotation",
"type": "library",
"version": "v2.0.11",
"keywords": [
"php",
"swoole",
"swoft",
"annotation"
],
"description": "swoft annotation component",
"homepage": "https://github.com/swoft-cloud/swoft-annotation",
"license": "Apache-2.0",
"require": {
"php": ">7.1",
"doctrine/annotations": "^1.4",
"php-di/phpdoc-reader": "^2.0",
"swoft/stdlib": "~2.0.0"
},
"autoload": {
"psr-4": {
"Swoft\\Annotation\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.0"
},
"autoload-dev": {
"psr-4": {
"SwoftTest\\Annotation\\Unit\\": "test/unit/",
"SwoftTest\\Annotation\\Testing\\": "test/testing/"
}
},
"repositories": {
},
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.xml"
}
}