-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
48 lines (48 loc) · 1.41 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
{
"name": "okapi/aop",
"description": "PHP AOP is a PHP library that provides a powerful Aspect Oriented Programming (AOP) implementation for PHP.",
"type": "library",
"homepage": "https://github.com/okapi-web/php-aop",
"license": "MIT",
"authors": [
{
"name": "WalterWoshid",
"email": "[email protected]",
"homepage": "https://github.com/WalterWoshid"
}
],
"keywords": [
"aop",
"aspect-oriented-programming",
"php",
"php-aop"
],
"scripts": {
"test": "phpunit --testsuite=Tests --display-notices",
"test-performance": "phpunit --testsuite=Performance --display-notices",
"test-coverage": "phpunit --testsuite=Tests --coverage-html tests/coverage --display-notices"
},
"require": {
"php": ">=8.1",
"nette/php-generator": "^4.0",
"okapi/code-transformer": "1.3.7",
"okapi/wildcards": "^1.0",
"okapi/singleton": "^1.0",
"php-di/php-di": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"symfony/var-dumper": "^6.3",
"symfony/console": "^6.3"
},
"autoload": {
"psr-4": {
"Okapi\\Aop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Okapi\\Aop\\Tests\\": "tests/"
}
}
}