-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.09 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
{
"name": "shoplic-kr/continy-support-email-verification",
"description": "Continy Support - Email verification",
"homepage": "https://github.com/shoplic-kr/continy-support-email-verification",
"type": "library",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"ShoplicKr\\Continy\\Supports\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShoplicKr\\Continy\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "changwoo",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"shoplic-kr/continy": "^0.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"test": "WP_CORE_DIR=$PWD/tests-core WP_TESTS_DIR=$PWD/tests-lib WP_TESTS_PHPUNIT_POLYFILLS_PATH=$PWD/vendor/yoast/phpunit-polyfills vendor/bin/phpunit",
"test:setup": "WP_CORE_DIR=$PWD/tests-core WP_TESTS_DIR=$PWD/tests-lib ./bin/install-wp-tests.sh"
},
"version": "1.0.0",
"repositories": [
{
"url": "https://github.com/shoplic-kr/continy.git",
"type": "git"
}
]
}