-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.26 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
{
"name": "codelicia/xulieta-php",
"description": "Xulieta plugin to validate PHP",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Codelicia\\XulietaPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codelicia\\XulietaPhp\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Jefersson Nathan",
"email": "[email protected]"
},
{
"name": "Alexandre Eher",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"ocramius/package-versions": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"codelicia/xulieta": true
}
},
"extra": {
"xulieta": {
"validator": ["Codelicia\\XulietaPhp\\PhpValidator"]
}
},
"require-dev": {
"codelicia/xulieta": "1.0.x-dev as 1.0.0",
"doctrine/coding-standard": "^12.0",
"phpunit/phpunit": "^10.0"
},
"scripts": {
"phpcbf": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpunit": "vendor/bin/phpunit",
"test": [
"@phpcs",
"@phpunit"
]
}
}