-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.05 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"name": "ironcorelabs/tenant-security-client-php",
"homepage": "http://github.com/ironcorelabs/tenant-security-client-php",
"description": "IronCore Tenant Security Client for PHP",
"keywords": [],
"type": "library",
"authors": [
{
"name": "IronCore Labs",
"homepage": "https://ironcorelabs.com"
}
],
"license": "AGPL-3.0-only OR LicenseRef-ironcore-labs-commercial-license",
"require": {
"php": ">=8.2",
"google/protobuf": "^4.33.6",
"ext-openssl": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"IronCore\\": "src/",
"Proto\\": "src/Proto/"
},
"files": [
"src/Utils.php"
]
},
"autoload-dev": {
"psr-4": {
"IronCore\\Test\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"test-coverage": "./vendor/bin/phpunit --coverage-html=coverage tests",
"lint": "./vendor/bin/phpcs --standard=phpcs-ruleset.xml src/ --ignore=src/Proto"
}
}