-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.17 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
{
"name": "scottjwalter/sjwc-curl-patch",
"description": "SJWC Curl Patch",
"type": "wordpress-plugin",
"license": "proprietary",
"authors": [
{
"name": "Scott J. Walter",
"email": "scott@scottjwalter.consulting",
"homepage": "https://scottjwalter.consulting/",
"role": "Developer"
}
],
"support": {
"issues": "https://scottjwalter.consulting",
"email": "support@scottjwalter.consulting",
"source": "https://bitbucket.org/sjwconsulting/sjwc-common-library.git"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=7.0",
"composer/installers": "~1.0",
"eloquent/composer-npm-bridge": "^4.1",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"SJWC\\CurlPatch\\": "includes/classes/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"10up/wp_mock": "dev-master",
"10up/phpcs-composer": "dev-master"
},
"scripts": {
"lint": "./vendor/bin/phpcs .",
"lint-fix": "./vendor/bin/phpcbf .",
"security-check": [
"@composer update --dry-run roave/security-advisories"
]
}
}