-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
91 lines (91 loc) · 2.48 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
{
"name": "phabel/phabel",
"description": "Write and deploy modern PHP 8 code, today.",
"type": "composer-plugin",
"require": {
"php": ">=8.0",
"phabel/php-parser": "^94.13",
"composer-plugin-api": "^2.0",
"symfony/console": "^5",
"symfony/process": "^5",
"amphp/parallel": "^1.4",
"psr/log": "^1.0",
"ext-json": "*",
"phpstan/phpdoc-parser": "^1.2"
},
"require-dev": {
"composer/composer": "^1|^2",
"haydenpierce/class-finder": "^0.4.2",
"symfony/polyfill-php80": "^1.23",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "^1.19",
"symfony/polyfill-php72": "^1.23",
"symfony/polyfill-php73": "^1.23",
"symfony/polyfill-php74": "^1.23",
"bamarni/composer-bin-plugin": "^1.4",
"ralouphie/getallheaders": "^3|^2",
"amphp/file": "^2.0"
},
"provide": {
"phabelio/phabel": "self.version"
},
"license": "MIT",
"authors": [{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}],
"autoload": {
"psr-4": {
"Phabel\\": "src"
},
"files": [
"src/guard.php"
]
},
"autoload-dev": {
"psr-4": {
"PhabelTest\\": "tests/"
}
},
"extra": {
"class": "Phabel\\Composer\\Plugin",
"plugin-modifies-downloads": true
},
"archive": {
"exclude": ["/tests", "/testsGenerated"]
},
"scripts": {
"typeHintGen": "php80 tools/typeHintGen.php",
"exprGen": "@php tools/exprGen.php",
"build": [
"@typeHintGen",
"@exprGen",
"@cs-fix",
"@test"
],
"check": [
"@cs",
"@test"
],
"test": [
"@phpunit",
"@coverage"
],
"test-simple": "SKIP_COMPOSER=1 php vendor/bin/phpunit --coverage-php=coverage/phpunit.php",
"test-full": [
"@phpunit",
"@phpunitExpr",
"@coverage"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"phpunit": "@php vendor/bin/phpunit --coverage-php=coverage/phpunit.php",
"coverage": "@php tools/ci/coverageMerge.php",
"phpunitExpr": "@php tools/testExprGen.php"
},
"config": {
"process-timeout": 0,
"allow-plugins": true
},
"bin": ["bin/phabel"]
}