-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.4 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
53
54
55
56
57
58
59
60
{
"name": "eightshift/unicorns",
"version": "5.0.0",
"description": "This repository contains all the tools you need to start building a modern WordPress project.",
"keywords": [
"composer",
"installer",
"plugin",
"blocks",
"Gutenberg",
"WordPress"
],
"homepage": "https://eightshift.com/",
"license": "MIT",
"authors": [
{
"name": "Eightshift team",
"email": "[email protected]",
"homepage": "https://eightshift.com/",
"role": "Developer / IT Manager"
}
],
"support": {
"issues": "https://github.com/infinum/unicorns/issues",
"source": "https://github.com/infinum/unicorns"
},
"require-dev": {
"infinum/coding-standards-wp": "^1.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"szepeviktor/phpstan-wordpress": "^0.7",
"php-stubs/wordpress-stubs": "^5.5"
},
"require": {
"php": "^7.2",
"infinum/eightshift-libs": "^3.0.2",
"typisttech/imposter-plugin": "^0.6.2"
},
"autoload": {
"psr-4": {
"Unicorns\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 2000
},
"scripts": {
"analyze": "@php ./vendor/bin/phpstan analyze",
"standards:check": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"standards:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf"
},
"extra": {
"imposter": {
"namespace": "UnicornsVendor"
}
}
}