-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
85 lines (85 loc) · 2.57 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "the-events-calendar/event-tickets",
"description": "Standalone Tickets Framework",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"events",
"tickets"
],
"homepage": "http://tri.be/shop/wordpress-events-calendar/",
"license": "GPL-2.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",
"fzaninotto/faker": "^1.8",
"lucatume/wp-browser": "^3.1.4",
"lucatume/wp-snaphot-assertions": "^1.1.0",
"phpunit/phpunit": "^6.5.14",
"spatie/phpunit-snapshot-assertions": "^1.4.2",
"stellarwp/coding-standards": "dev-main",
"the-events-calendar/tec-testing-facilities": "dev-master",
"lucatume/codeception-snapshot-assertions": "^0.4.0",
"automattic/jetpack-changelogger": "^4.2",
"slope-it/clock-mock": "^0.4.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.4"
},
"allow-plugins": {
"kylekatarnls/update-helper": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"changelogger": {
"changelog": "changelog.md",
"types": {
"version" : "Version",
"feat" : "Feature",
"tweak" : "Tweak",
"fix" : "Fix",
"performance" : "Performance",
"security" : "Security",
"accessibility" : "Accessibility",
"compatibility" : "Compatibility",
"deprecated" : "Deprecated",
"language" : "Language"
},
"formatter": {
"filename": "bin/class-tec-changelog-formatter.php"
},
"versioning": {
"filename": "bin/ModifiedSemverVersioning.php"
},
"changes-dir": "changelog"
}
},
"autoload": {
"psr-4": {
"Tribe\\Tickets\\": "src/Tribe",
"TEC\\Tickets\\": "src/Tickets"
}
},
"autoload-dev": {
"psr-4": {
"Tribe\\Tests\\Modules\\Tickets\\": "tests/_support/Modules",
"Tribe\\Tests\\Tickets\\": "tests/_support",
"Tribe\\Tickets\\Events\\Views\\": "tests/views_integration/Tribe/Tickets/Events/Views",
"TEC\\Tickets\\Flexible_Tickets\\Test\\": "tests/_support/Flexible_Tickets"
}
}
}