forked from good-php/serialization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1014 Bytes
/
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": "good-php/serialization",
"description": "Extendable reflection-based serializer with support for JSON and PHP primitive formats",
"license": "MIT",
"authors": [
{
"name": "Alex Wells (Oleksandr Prypkhan)",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"php-ds/php-ds": "^1.3.0",
"good-php/reflection": "dev-serializer-improvements",
"tenantcloud/php-standard": "^1.1.0"
},
"require-dev": {
"pestphp/pest": "^1.21",
"php-cs-fixer/shim": "~3.8.0",
"phpstan/phpstan": "~1.7.15",
"phake/phake": "^4.2",
"phpstan/phpstan-webmozart-assert": "^1.2"
},
"autoload": {
"psr-0": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/pest",
"cs-fix": "./vendor/bin/php-cs-fixer fix -v --show-progress=dots",
"phpstan": "./vendor/bin/phpstan analyse"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}