forked from pluginever/wc-serial-numbers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
100 lines (100 loc) · 3.36 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "pluginever/wc-serial-numbers",
"description": "WC Serial Numbers",
"homepage": "https://pluginever.com/plugins/wc-serial-numbers/",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": [
{
"url": "[email protected]:pluginever/framework-plugin.git",
"type": "github"
},
{
"url": "[email protected]:pluginever/framework-settings.git",
"type": "github"
},
{
"url": "[email protected]:pluginever/framework-model.git",
"type": "github"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"byteever/byteever-sniffs": "^1.0",
"codeception/lib-innerbrowser": "^1.0",
"codeception/module-asserts": "^1.1",
"codeception/module-cli": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.2",
"codeception/module-webdriver": "^1.0",
"codeception/util-universalframework": "^1.0",
"coenjacobs/mozart": "^0.7.1",
"level-level/wp-browser-woocommerce": "^0.1.8",
"lucatume/wp-browser": "^3.1",
"phpcompatibility/php-compatibility": "9.3.5",
"pluginever/framework-model": "dev-master",
"pluginever/framework-plugin": "dev-master",
"pluginever/framework-settings": "dev-master"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {},
"autoload-dev": {
"psr-4": {
"WooCommerceSerialNumbers\\Tests\\WPUnit\\": "tests/wpunit",
"WooCommerceSerialNumbers\\Tests\\Unit\\": "tests/unit"
},
"classmap": []
},
"scripts": {
"post-install-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"phpcs": "@php ./vendor/bin/phpcs --standard=phpcs.xml -s -v",
"phpcbf": "@php ./vendor/bin/phpcbf --standard=phpcs.xml -v",
"selenium:start": "selenium-server -port 4444",
"test:build": "@php ./vendor/bin/codecept build",
"test:acceptance": "@php ./vendor/bin/codecept run acceptance",
"test:functional": "@php ./vendor/bin/codecept run functional",
"test:wpunit": "@php ./vendor/bin/codecept run wpunit",
"test": "composer test:acceptance && composer test:functional && composer test:wpunit",
"test:gen:acceptance": "@php vendor/bin/codecept generate:cept",
"test:gen:func": "@php vendor/bin/codecept generate:cest",
"test:gen:wpunit": "@php vendor/bin/codecept generate:wpunit wpunit",
"test:clean": "@php ./vendor/bin/codecept clean",
"test:coverage": "@php ./vendor/bin/codecept run wpunit --coverage --coverage-xml --coverage-html",
"test:generate": "@php vendor/bin/codecept generate:scenarios",
"codecept": "@php vendor/bin/codecept"
},
"extra": {
"mozart": {
"dep_namespace": "WooCommerceSerialNumbers\\",
"dep_directory": "/lib/",
"classmap_directory": "/lib/classes/",
"classmap_prefix": "WooCommerceSerialNumbers_",
"delete_vendor_directories": true,
"packages": [
"pluginever/framework-plugin",
"pluginever/framework-settings",
"pluginever/framework-model"
]
}
}
}