-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
46 lines (46 loc) · 1.08 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
{
"name": "cedaro/shiny-code",
"description": "A Gutenberg block for editing and displaying code with syntax highlighting.",
"version": "1.0.1",
"keywords": [
"wordpress"
],
"homepage": "https://www.cedaro.com/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Cedaro",
"email": "[email protected]",
"homepage": "https://www.cedaro.com/"
}
],
"type": "wordpress-plugin",
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"cedaro/wp-plugin": "^0.5",
"composer/installers": "^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.3",
"wp-coding-standards/wpcs": "^3.1"
},
"autoload": {
"psr-4": {
"Cedaro\\WP\\BlockType\\Code\\": "php/"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs": "./vendor/bin/phpcs"
}
}