-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.44 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
{
"name": "okapi/code-transformer",
"description": "PHP Code Transformer is a PHP library that allows you to modify and transform the source code of a loaded PHP class.",
"type": "library",
"homepage": "https://github.com/okapi-web/php-code-transformer",
"license": "MIT",
"authors": [
{
"name": "WalterWoshid",
"email": "[email protected]",
"homepage": "https://github.com/WalterWoshid"
}
],
"keywords": [
"code",
"transformer",
"php",
"php-code"
],
"scripts": {
"test": "phpunit --display-notices",
"test-coverage": "phpunit --coverage-html tests/coverage --display-notices"
},
"require": {
"php": ">=8.1",
"microsoft/tolerant-php-parser": "^0.1.2",
"okapi/filesystem": "^1.0",
"okapi/path": "^1.0",
"okapi/singleton": "^1.0",
"okapi/wildcards": "^1.0",
"php-di/php-di": "^7.0",
"roave/better-reflection": "^6.8"
},
"require-dev": {
"phpunit/phpunit": "^10",
"symfony/var-dumper": "^6.2"
},
"autoload": {
"psr-4": {
"Okapi\\CodeTransformer\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Okapi\\CodeTransformer\\Tests\\": "tests/"
}
}
}