-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.06 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"description": "This repository allows you to access objects via string.",
"name": "uuur86/strobj",
"type": "library",
"license": "GPL-2.0-or-later",
"support": {
"source": "https://github.com/uuur86/strobj"
},
"authors": [
{
"name": "Uğur Biçer",
"email": "info@ugurbicer.com.tr",
"role": "lead"
}
],
"autoload": {
"psr-4": {
"StrObj\\": "src/"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"symfony/console": "^4.4",
"phpunit/phpunit": "^8.5",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.5",
"friendsofphp/php-cs-fixer": "^2.16 || ^3.0",
"phpmetrics/phpmetrics": "^2.8"
},
"scripts": {
"test": [
"phpunit --debug tests/TestDataObject",
"phpunit --debug tests/TestDataPath",
"phpunit --debug tests/TestDataFilters",
"phpunit --debug tests/TestValidation"
],
"phpstan": "phpstan analyse src tests",
"analyze": "php ./vendor/bin/phpmetrics --report-html=docs/report ."
}
}