-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
68 lines (68 loc) · 2.31 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
{
"name": "riverwaysoft/php-converter",
"description": "PHP converter to TypeScript / Dart",
"authors": [
{
"name": "Egor Gorbachev",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"test:update-snapshots": "vendor/bin/phpunit -d --update-snapshots --no-coverage",
"test:with-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit",
"test:coverage-level": "vendor/bin/coverage-check ./coverage/clover.xml 85",
"build-phar": "bin/build.sh",
"build-phar:test": "php build/php-converter.phar --from=./tests/Fixtures/ --to=.",
"cs": "vendor/bin/ecs check --fix",
"test:cs": " vendor/bin/ecs check",
"phpstan": "vendor/bin/phpstan analyse src tests bin",
"php-parser-dump": "vendor/bin/php-parse tests/Fixtures/NestedDto.php"
},
"require": {
"php": ">=8.0",
"nikic/php-parser": "^4.16",
"webmozart/assert": "^1.10",
"jfcherng/php-diff": "^6.10",
"jawira/case-converter": "^3.4",
"phpstan/phpdoc-parser": "^1.6",
"doctrine/inflector": "^2.0",
"composer/xdebug-handler": "^3.0",
"symfony/console": "^5.3|^6.3|^6.2|^6.1|^7.0",
"symfony/filesystem": "^5.3|^6.3|^6.2|^6.1|^7.0",
"symfony/process": "^5.3|^6.3|^6.2|^6.1|^7.0"
},
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {"Riverwaysoft\\PhpConverter\\": "src/"},
"classmap": [
"src"
]
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"bin": [
"bin/php-converter"
],
"require-dev": {
"phpunit/phpunit": "^10",
"spatie/phpunit-snapshot-assertions": "^5",
"myclabs/php-enum": "^1.8",
"symfony/var-dumper": "^5.3|^6.0|^7.0",
"phpstan/phpstan": "^1.7",
"rregeer/phpunit-coverage-check": "^0.3.1",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
"symplify/easy-coding-standard": "^11.5",
"slevomat/coding-standard": "^8.13"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}