-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.15 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
{
"name": "kyleweishaupt/cakephp-npi-registry",
"description": "CakePHP Plugin for interacting with the NPPES NPI Registry.",
"type": "cakephp-plugin",
"version": "0.0.2",
"keywords": [
"cakephp",
"cms",
"npi",
"api"
],
"homepage": "https://github.com/kyleweishaupt/cakephp-npi-registry",
"license": "MIT",
"authors": [
{
"name": "Kyle Weishaupt",
"homepage": "https://github.com/kyleweishaupt",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/kyleweishaupt/cakephp-npi-registry/issues",
"source": "https://github.com/kyleweishaupt/cakephp-npi-registry"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"cakephp/cakephp": "^4.4",
"cakephp/cakephp-codesniffer": "^4.0"
},
"scripts": {
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/",
"cs-fix": "phpcbf --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/"
},
"autoload": {
"psr-4": {
"NPIRegistry\\": "src"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}