-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
99 lines (99 loc) · 2.75 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ngmy/laravel.aop",
"description": "Laravel.Aop integrates Ray.Aop with Laravel.",
"license": "MIT",
"type": "library",
"version": "0.9.0",
"keywords": [
"laravel",
"aop",
"aspect"
],
"authors": [
{
"name": "Yuta Nagamiya",
"email": "[email protected]"
}
],
"homepage": "https://github.com/ngmy/Laravel.Aop",
"require": {
"php": "^8.1",
"laravel/framework": "^9.0 || ^10.0 || ^11.0",
"olvlvl/composer-attribute-collector": "*",
"ray/aop": "^2.10.1",
"spatie/file-system-watcher": "^1.2",
"symfony/finder": "*"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"ergebnis/composer-normalize": "^2.42",
"larastan/larastan": "^2.9",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
"phpstan/extension-installer": "^1.3"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ngmy\\LaravelAop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ngmy\\LaravelAop\\Tests\\": "tests/"
},
"files": [
"vendor/attributes.php"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"olvlvl/composer-attribute-collector": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "vendor-bin"
},
"composer-attribute-collector": {
"include": [
"tests/Feature/Aspects/Cache/stubs",
"tests/Feature/Aspects/Logging/stubs",
"tests/Feature/Aspects/Retry/stubs",
"tests/Feature/Aspects/Transaction/stubs",
"tests/Feature/stubs"
]
},
"laravel": {
"providers": [
"Ngmy\\LaravelAop\\ServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
],
"fmt": [
"@php vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --allow-risky=yes"
],
"lint": [
"@php vendor/bin/phpstan analyse"
],
"test": [
"@php vendor/bin/phpunit --no-coverage"
],
"test-coverage": [
"@putenv XDEBUG_MODE=coverage",
"@php vendor/bin/phpunit"
]
}
}