-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 893 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 893 Bytes
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
{
"name": "jnessier/data-handler",
"description": "Data container for arrays and more.",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Jonathan Nessier"
}
],
"autoload": {
"psr-4": {
"DataHandler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DataHandler\\Test\\": "tests/"
}
},
"scripts": {
"run php-cs-fixer": "php-cs-fixer fix",
"run php-cs-fixer dry": "php-cs-fixer fix --dry-run",
"run phpunit": "phpunit --configuration phpunit.xml",
"run phpunit coverage-text": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --configuration phpunit.xml --coverage-text"
]
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.2",
"pds/skeleton": "^1.0",
"friendsofphp/php-cs-fixer": "^3.13"
}
}