forked from ChromaticHQ/usher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.53 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
{
"name": "chromatic/usher",
"description": "A collection of Robo commands for use on Chromatic projects.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mark Dorison",
"email": "[email protected]"
}
],
"require": {
"consolidation/robo": "^1.4 || ^2 || ^3 || ^4",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan-deprecation-rules": "^0.12.6 || ^1.0.0",
"async-aws/s3": "^1.8",
"php": ">=7.4",
"drush/drush": "^8 || ^10 || ^11",
"webflo/drupal-finder": "^1.2",
"vincentlanglet/twig-cs-fixer": "^0.4.1 || ^0.5 || ^0.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2 || ^1.0.0",
"phpstan/extension-installer": "^1.1",
"phpcompatibility/php-compatibility": "^9.3",
"guzzlehttp/guzzle": "^5.0 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Usher\\": "src"
}
},
"scripts": {
"php-check": "composer robo job:check-coding-standards",
"php-fix": "composer robo job:fix-coding-standards",
"php-stan": "composer robo job:run-static-analysis",
"robo": "robo --ansi",
"test": [
"@php-check",
"@php-stan"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require-dev": {
"phpstan/phpstan-strict-rules": "^1.1"
}
}