-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.43 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.43 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
{
"name": "vk/mytracker",
"description": "Мультиплатформенная система аналитики и атрибуции для мобильных приложений и сайтов",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"VK\\MyTracker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VK\\MyTracker\\": "tests/phpunit/tests"
}
},
"authors": [
{
"name": "Mikhail Kobzarev",
"email": "mikhail@kobzarev.com"
},
{
"name": "VK Team",
"email": "login@tracker.my.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"rdlowrey/auryn": "^1.4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"10up/wp_mock": "0.2 - 0.5",
"lucatume/function-mocker": "dev-master",
"phpunit/phpunit": "5.7 - 9.5",
"squizlabs/php_codesniffer": "^3.6",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.3",
"vimeo/psalm": "^4.20",
"humanmade/psalm-plugin-wordpress": "^2.0"
},
"scripts": {
"phpcs": "phpcs --standard=./phpcs.xml",
"phpcbf": "phpcbf --standard=./phpcs.xml",
"psalm": "psalm --config=./psalm.xml",
"unit": "phpunit -c ./phpunit.xml"
}
}