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 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.41 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.41 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/debug-extension",
"type": "phpactor-extension",
"description": "Add some debugging facilities",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "daniel@dantleech.com"
}
],
"require": {
"phpactor/console-extension": "^0.1.6",
"phpactor/container": "^2.0.0",
"symfony/debug": "^4.4",
"symfony/var-dumper": "^5.0",
"php": "^7.3 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^2.17",
"phpstan/phpstan": "~0.12.0",
"phpunit/phpunit": "^9.1",
"phpactor/test-utils": "^1.1"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
"phpactor.extension_class": "Phpactor\\Extension\\Debug\\DebugExtension"
},
"autoload": {
"psr-4": {
"Phpactor\\Extension\\Debug\\": "lib/"
},
"files": [
"lib/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Phpactor\\Extension\\Debug\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"integrate": [
"./vendor/bin/phpunit",
"./vendor/bin/phpstan analyze",
"./vendor/bin/php-cs-fixer fix --allow-risky=yes"
]
}
}