-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.08 KB
/
composer.json
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": "jessegall/php-data-container",
"description": "A trait that provides a convenient solution for objects to use an array as their data source. \nAs well as offering the possibility to share the same data between instances.",
"license": "MIT",
"autoload": {
"psr-4": {
"JesseGall\\Data\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"JesseGall\\Tests\\": "tests/"
},
"files": [
"tests/helpers.test.php"
]
},
"authors": [
{
"name": "Jesse Gall",
"email": "jesse-gall@hotmail.com"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.1"
},
"scripts": {
"test": "@php -dxdebug.mode=coverage ./vendor/bin/phpunit --colors=auto --testdox --coverage-clover coverage.xml",
"test-coverage": "@test --coverage-html=report",
"test-filter": "@test --filter="
}
}