-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·49 lines (49 loc) · 1.49 KB
/
composer.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.49 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
45
46
47
48
49
{
"name": "astral/php-serialize",
"description": "An advanced PHP serialization tool leveraging attributes for flexible object-to-array and JSON conversion. Supports property aliases, type conversions, and nested object handling. Ideal for APIs, data persistence, and configuration management.",
"type": "library",
"keywords" : [
"php-serialize",
"serialize",
"php-mapper"
],
"homepage" : "https://github.com/astral-data/php-serialize",
"license" : "MIT",
"authors" : [
{
"name" : "astral",
"email" : "350375092@qq.com",
"role" : "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0",
"phpdocumentor/reflection-docblock": "^5.5",
"phpdocumentor/reflection": "^6.0",
"psr/simple-cache": "^3.0"
},
"require-dev" : {
"fakerphp/faker": "^1.23",
"phpstan/phpstan": "^2.0.2",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.6",
"phpbench/phpbench": "^1.2",
"pestphp/pest": "^2.30"
},
"autoload": {
"psr-4": {
"Astral\\Serialize\\": "src/",
"Astral\\Serialize\\Tests\\": "tests/",
"Astral\\Benchmarks\\": "benchmarks/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.1.32"
}
}
}