-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 1.49 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": "mociof/no-unsafe-inline",
"description": "A WordPress plugin to help site developers not to use unsafe-inline in CSP",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Giuseppe Foti",
"email": "foti.giuseppe@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"ivopetkov/html5-dom-document-php": "2.*",
"opctim/php-nilsimsa": "^1.0",
"league/uri": "^6.5",
"scrivo/highlight.php": "^9.18",
"league/uri-components": "^2.4",
"rubix/ml": "^2.0",
"rubix/tensor": "^3.0",
"symfony/polyfill-php81": "^1.31"
},
"autoload": {
"psr-4": {
"NUNIL\\": "src/"
}
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/extension-installer": "^1.2",
"sinsquare/phpdoc-formatter": "^0.1.3",
"phpunit/phpunit": "^5.7.21 || ^6.5 || ^7.5 || ^9.0",
"yoast/phpunit-polyfills": "^2.0",
"wp-coding-standards/wpcs": "^3",
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"phpcompatibility/phpcompatibility-wp": "^2.1-",
"automattic/vipwpcs": "^3.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4"
}
}
}