-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
49 lines (49 loc) · 1.33 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
{
"name": "facile-it/facile-coding-standard",
"description": "Facile.it coding standard",
"type": "composer-plugin",
"extra": {
"class": "Facile\\CodingStandards\\Installer\\Plugin"
},
"license": "MIT",
"keywords": [
"facile",
"facile.it",
"coding standard"
],
"config": {
"sort-packages": true
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff --allow-risky yes",
"cs-fix": "php-cs-fixer fix --diff --allow-risky yes"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"composer-plugin-api": "^2.0",
"friendsofphp/php-cs-fixer": "^3.4",
"symfony/console": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/polyfill-php80": "^1.0"
},
"require-dev": {
"composer/composer": "^2.0",
"composer/semver": "^3.0",
"mikey179/vfsstream": "^1.6.8",
"phpspec/prophecy": "^1.10",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5.28 || ^10.5.36",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.23"
},
"autoload": {
"psr-4": {
"Facile\\CodingStandards\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\CodingStandardsTest\\": "tests/"
}
}
}