-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.56 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
{
"name": "mihdan/lite-youtube-embed",
"description": "A faster youtube embed. Renders faster than a sneeze.",
"keywords": ["mihdan", "lite", "youtube", "embed", "fast", "performace"],
"homepage": "https://github.com/mihdan/mihdan-lite-youtube-embed",
"authors": [
{
"name": "Mikhail Kobzarev",
"homepage": "https://www.kobzarev.com/"
}
],
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*"
}
,
"require-dev": {
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.3",
"vimeo/psalm": "^4.30",
"humanmade/psalm-plugin-wordpress": "^2.1",
"phpunit/phpunit": "^9.6",
"lucatume/function-mocker": "^1.3",
"10up/wp_mock": "^1.0"
},
"autoload": {
"psr-4": {
"Mihdan\\LiteYouTubeEmbed\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mihdan\\LiteYouTubeEmbed\\": "tests/phpunit/tests"
}
},
"scripts": {
"phpcs": "phpcs --standard=./phpcs.xml",
"phpcbf": "phpcbf --standard=./phpcs.xml",
"psalm": "psalm --config=./psalm.xml",
"tests": "phpunit -c ./phpunit.xml"
}
}