forked from ray-di/Ray.Aop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.18 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "ray/aop",
"description": "An aspect oriented framework",
"keywords": [
"AOP"
],
"license": "MIT",
"authors": [
{
"name": "Akihito Koriyama",
"email": "akihito.koriyama@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"doctrine/annotations": "^1.6",
"nikic/php-parser": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"Ray\\Aop\\": ["src/"]
},
"files": ["annotation_loader.php"]
},
"autoload-dev": {
"psr-4": {
"Ray\\Aop\\": ["tests/", "tests/Fake/"]
}
},
"suggest": {
"ray/di": "A dependency injection framework"
},
"scripts" :{
"test": "./vendor/bin/phpunit",
"tests": ["@cs", "@test", "phpstan analyse -l max src tests -c phpstan.neon --no-progress"],
"coverage": ["php -dzend_extension=xdebug.so ./vendor/bin/phpunit --coverage-text --coverage-html=build/coverage"],
"cs": ["php-cs-fixer fix -v --dry-run", "phpcs --standard=./phpcs.xml src"],
"cs-fix": ["php-cs-fixer fix -v", "phpcbf src"]
}
}