This repository was archived by the owner on Mar 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.49 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.49 KB
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
{
"name": "phpactor/code-transform",
"description": "Applies introspective transformations on source code",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "daniel@dantleech.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"phpactor/class-to-file": "~0.4.0",
"phpactor/code-builder": "^0.4.1",
"phpactor/name-specification": "^0.1",
"phpactor/text-document": "^1.2.4",
"phpactor/worse-reflection": "^0.4.7",
"webmozart/path-util": "~2.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^2.17",
"phpactor/test-utils": "~1.1.3",
"phpstan/phpstan": "~0.12.0",
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/var-dumper": "^5.2",
"phpbench/phpbench": "^1.0"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
},
"autoload": {
"psr-4": {
"Phpactor\\CodeTransform\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Phpactor\\CodeTransform\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"integrate": [
"./vendor/bin/php-cs-fixer fix --allow-risky=yes",
"./vendor/bin/phpstan analyse lib -c phpstan.neon",
"./vendor/bin/phpunit"
]
}
}