-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.19 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "wearerequired/rest-api-same-origin",
"type": "wordpress-plugin",
"description": "WordPress plugin to limit the Access-Control-Allow-Origin header to only allowed origins.",
"homepage": "https://github.com/wearerequired/rest-api-same-origin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "required",
"email": "team@required.com",
"homepage": "https://required.com",
"role": "Company"
},
{
"name": "Dominik Schilling",
"email": "dominik@required.com",
"role": "Developer"
}
],
"keywords": [
"wordpress",
"rest-api",
"cors",
"origin"
],
"require": {
"php": ">=8.0"
},
"config": {
"sort-packages": true
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0",
"wearerequired/coding-standards": "^6.0"
},
"scripts": {
"format": "vendor/bin/phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "vendor/bin/phpcs --standard=phpcs.xml.dist --report-summary --report-source"
},
"autoload": {
"files": [
"inc/namespace.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}