forked from the-events-calendar/the-events-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.27 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "the-events-calendar/the-events-calendar",
"description": "The Events Calendar WordPress plugin by The Events Calendar",
"type": "wordpress-plugin",
"homepage": "https://theeventscalendar.com",
"license": "GPL-2.0",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"wordpress",
"events"
],
"require": {
"woocommerce/action-scheduler": "^3.4.0"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"bordoni/phpass": "^0.3.5",
"codeception/module-asserts": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/util-universalframework": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"facebook/webdriver": "1.6.0",
"lucatume/function-mocker": "^1.3.8",
"lucatume/wp-browser": "^3.1.4",
"lucatume/wp-snaphot-assertions": "^1.1.0",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "~6.0",
"scotteh/php-dom-wrapper": "^1.0",
"spatie/phpunit-snapshot-assertions": "^1.2",
"stellarwp/coding-standards": "dev-main",
"the-events-calendar/tec-testing-facilities": "dev-master",
"vlucas/phpdotenv": "^4.1",
"wp-coding-standards/wpcs": "^3.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/extension-installer": "^1.3",
"szepeviktor/phpstan-wordpress": "*"
},
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Tribe\\Events\\" : "src/Tribe",
"TEC\\Events\\" : "src/Events"
},
"classmap": ["src/deprecated/Traits/"]
},
"autoload-dev": {
"psr-4": {
"Tribe\\Tests\\Modules\\Core\\": "tests/_support/Modules",
"Tribe\\Events\\Views\\": "tests/views_integration/Tribe/Events/Views"
}
},
"scripts": {
"start-chromedriver": "docker run --rm -d --name chromedriver -p 4444:4444 selenium/standalone-chrome",
"stop-chromedriver": "docker stop chromedriver"
}
}