-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (36 loc) · 1.03 KB
/
composer.json
File metadata and controls
37 lines (36 loc) · 1.03 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
{
"name": "cloudstek/scim-filter-parser",
"description": "Parser for the SCIM (IETF RFC 7644, System for Cross-domain Identity Management) filter syntax.",
"keywords": ["SCIM", "parser", "lexer", "identity", "management", "cross-domain", "protocol", "sync", "users", "groups", "ietf", "rfc7644"],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Maarten de Boer",
"email": "maarten@cloudstek.nl"
}
],
"autoload": {
"psr-4": {
"Cloudstek\\SCIM\\FilterParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cloudstek\\SCIM\\FilterParser\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"nette/tokenizer": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"php-coveralls/php-coveralls": "^2.2",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.22"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}