-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.54 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.54 KB
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
61
62
{
"name": "pojome/pojo-accessibility",
"description": "pojo accessibility",
"minimum-stability": "dev",
"license": "gpl2",
"authors": [
{
"name": "Yakir Sitbon",
"email": "yakir@pojo.me"
}
],
"require-dev": {
"johnpbloch/wordpress-core": "^6.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"squizlabs/php_codesniffer": "^3.6",
"wp-coding-standards/wpcs": "^2.3.0",
"php-stubs/wordpress-stubs": "^6.0",
"elementor/eunit": "^0.0.10",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/php-code-coverage": "^9.2",
"wildwolf/wordpress-test-library-stubs": "^6.0",
"wp-phpunit/wp-phpunit": "^6.0",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"lint": "vendor/bin/phpcs --standard=./ruleset.xml ./**/*.php",
"lint:fix": "vendor/bin/phpcbf --standard=./ruleset.xml ./**/*.php",
"lint:report": "vendor/bin/phpcs --report=summary --standard=./ruleset.xml ./**/*.php"
},
"require": {
"ext-json": "*",
"ext-fileinfo": "*",
"ext-curl": "*",
"ext-exif": "*",
"ext-libxml": "*",
"ext-zlib": "*",
"ext-dom": "*",
"ext-ctype": "*",
"ext-mbstring": "*",
"elementor/wp-notifications-package": "^1.2.0",
"elementor/wp-one-package": "1.0.54"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:elementor/eunit.git"
},
{
"type": "composer",
"url": "https://composer.elementor.com",
"only": [
"elementor/wp-one-package"
]
}
]
}