-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (47 loc) · 1011 Bytes
/
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
{
"name": "sematico/wp-phpscoper",
"description": "",
"license": "MIT",
"authors": [{
"name": "Alessandro Tesoro",
"email": "[email protected]"
}],
"bin": [
"bin/wp-phpscoper"
],
"autoload": {
"psr-4": {
"Sematico\\Scoper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sematico\\Scoper\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"require": {
"symfony/console": "^7.1",
"nikic/php-parser": "^5.0",
"symfony/process": "^7.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^5.1",
"wp-coding-standards/wpcs": "^3.0",
"yoast/phpunit-polyfills": "^2.0",
"symfony/finder": "^7.1"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}