-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathcomposer.json
More file actions
89 lines (89 loc) · 2.37 KB
/
composer.json
File metadata and controls
89 lines (89 loc) · 2.37 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
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
{
"name": "wp-graphql/wp-graphql-jwt-authentication",
"description": "JWT Authentication for WPGraphQL",
"type": "wordpress-plugin",
"license": "GPL-3.0+",
"authors": [
{
"name": "jasonbahl",
"email": "jasonbahl@mac.com"
}
],
"scripts": {
"install-wp-tests": "bash bin/install-wp-tests.sh",
"test": "vendor/bin/codecept run",
"functional-test": "vendor/bin/codecept run functional",
"acceptance-test": "vendor/bin/codecept run acceptance",
"wpunit-test": "vendor/bin/codecept run wpunit",
"strauss": [
"test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.14.0/strauss.phar",
"@php bin/strauss.phar",
"composer dump-autoload --optimize"
],
"post-install-cmd": [
"@strauss"
],
"post-update-cmd": [
"@strauss"
]
},
"require": {
"firebase/php-jwt": "^7.0.3"
},
"require-dev": {
"lucatume/wp-browser": "3.1.0",
"behat/gherkin": "^4.8 <4.12",
"codeception/module-asserts": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/util-universalframework": "^1.0",
"codeception/module-rest": "^1.2",
"phpunit/phpunit": "^8.5",
"wp-cli/wp-cli-bundle": "*"
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"WPGraphQL\\JWT_Authentication\\": "src/"
},
"classmap": [
"src/",
"vendor-prefixed/"
]
},
"archive": {
"name": "wp-graphql-jwt-authentication",
"exclude": [
"/.*",
"/bin",
"/tests",
"/codeception.dist.yml",
"/codeception.yml",
"/composer.json",
"/composer.lock",
"/docker-compose.yml",
"/Dockerfile"
]
},
"extra": {
"strauss" : {
"target_directory": "vendor-prefixed",
"namespace_prefix": "WPGraphQL\\JWT_Authentication\\Vendor\\",
"classmap_prefix": "WP_GraphQL_JWT_Authentication_Vendor",
"constant_prefix": "WPGRAPHQL_JWT_AUTHENTICATION_VENDOR",
"delete_vendor_files": true,
"include_modified_date": false,
"packages" : [
"firebase/php-jwt"
],
"exclude_from_prefix": {
"file_patterns": []
}
}
}
}