-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
121 lines (121 loc) · 3.21 KB
/
Copy pathcomposer.json
File metadata and controls
121 lines (121 loc) · 3.21 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "axepress/wp-graphql-headless-login",
"description": "A WordPress plugin that provides headless login and authentication for WPGraphQL",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"support": {
"issues": "https://github.com/AxeWP/wp-graphql-headless-login/issues",
"forum": "https://github.com/AxeWP/wp-graphql-headless-login/discussions"
},
"authors": [
{
"name": "AxePress Development",
"email": "support@axepress.dev",
"homepage": "https://axepress.dev"
},
{
"name": "David Levine",
"role": "Developer",
"email": "david@axepress.dev"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4"
},
"preferred-install": "dist",
"process-timeout": 0,
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"strauss": {
"target_directory": "vendor-prefixed",
"namespace_prefix": "WPGraphQL\\Login\\Vendor\\",
"classmap_prefix": "GraphQL_Login_",
"constant_prefix": "GRAPHQL_LOGIN_",
"delete_vendor_files": false,
"delete_vendor_packages": false,
"update_call_sites": false,
"include_modified_date": false,
"packages": [
"axepress/wp-graphql-plugin-boilerplate",
"firebase/php-jwt",
"league/oauth2-client",
"league/oauth2-facebook",
"league/oauth2-github",
"league/oauth2-google",
"league/oauth2-instagram",
"league/oauth2-linkedin"
],
"exclude_from_prefix": {
"namespaces": [],
"file_patterns": []
}
}
},
"autoload": {
"files": [
"access-functions.php"
],
"psr-4": {
"WPGraphQL\\Login\\": "src/"
},
"classmap": [
"vendor-prefixed/"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\WPGraphQL\\Login\\Helper\\": "tests/_support/Helper"
}
},
"require": {
"php": ">=7.4",
"axepress/wp-graphql-plugin-boilerplate": "0.1.1",
"league/oauth2-facebook": "^2.2",
"league/oauth2-github": "^3.0",
"firebase/php-jwt": "^6.3",
"league/oauth2-google": "^4.0",
"league/oauth2-instagram": "^3.1",
"league/oauth2-linkedin": "^5.1"
},
"require-dev": {
"axepress/wp-graphql-cs": "^2.0.0",
"axepress/wp-graphql-stubs": "^2.3",
"codeception/module-rest": "^2.0",
"lucatume/wp-browser": "^3.7",
"mockery/mockery": "^1.5",
"php-stubs/woocommerce-stubs": "^10.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan": "^2.0",
"szepeviktor/phpstan-wordpress": "^2.0",
"wp-cli/wp-cli-bundle": "^2.12.0",
"wp-graphql/wp-graphql-testcase": "^3.4.0"
},
"scripts": {
"lint": "vendor/bin/phpcs",
"format": "vendor/bin/phpcbf",
"phpstan": "vendor/bin/phpstan analyze --ansi --memory-limit=1G",
"strauss-install": [
"test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.26.3/strauss.phar"
],
"prefix-namespaces": [
"@strauss-install",
"@php bin/strauss.phar",
"@composer dump-autoload"
],
"pre-install-cmd": [
"test -d vendor-prefixed || mkdir vendor-prefixed",
"@strauss-install"
],
"pre-update-cmd": "@pre-install-cmd",
"post-install-cmd": "@prefix-namespaces",
"post-update-cmd": "@prefix-namespaces"
}
}