-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.21 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
40
41
42
43
44
45
46
{
"name": "sweikenb/dirty",
"description": "Library for checking if an object or array has changes (is dirty) since the last check.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Simon Schröer",
"email": "code@sweikenb.com"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"symfony/serializer": "^6.4 | ^7.0",
"symfony/property-access": "^6.4 | ^7.0"
},
"require-dev": {
"ext-xdebug": "*",
"phpunit/phpunit": "^11.2",
"symplify/easy-coding-standard": "^12.3",
"friendsofphp/php-cs-fixer": "^3.59"
},
"suggest": {
"ext-redis": "*",
"snc/redis-bundle": "*"
},
"autoload": {
"psr-4": {
"Sweikenb\\Library\\Dirty\\": "src/"
},
"exclude-from-classmap": [
"examples/",
"tests/"
]
},
"autoload-dev": {
"psr-4": {
"Sweikenb\\Library\\Dirty\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs-fixer": "./vendor/bin/php-cs-fixer fix src --rules=@Symfony",
"phpunit": "XDEBUG_MODE=coverage php ./vendor/bin/phpunit -c phpunit.dist.xml"
}
}