-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 1.94 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "devitools/constructo",
"type": "library",
"license": "MIT",
"keywords": [
"php"
],
"description": "The definitive serializer and deserializer for PHP",
"autoload": {
"psr-4": {
"Constructo\\": "src/"
},
"files": [
"src/_/@schemata.php",
"src/_/cast.php",
"src/_/crypt.php",
"src/_/json.php",
"src/_/notation.php",
"src/_/polyfill.php",
"src/_/util.php"
]
},
"autoload-dev": {
"psr-4": {
"Constructo\\Test\\": "tests/",
"Constructo\\Test\\_\\": "tests/_/"
}
},
"require": {
"php": "^8.3",
"ext-json": "*",
"jawira/case-converter": "^3.5",
"visus/cuid2": "^4.1 || ^5.1",
"fakerphp/faker": "^1.24"
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.1",
"deptrac/deptrac": "^3.0",
"php-mock/php-mock-phpunit": "^2.12",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^10.5",
"rector/rector": "^2",
"roave/security-advisories": "dev-latest",
"robiningelbrecht/phpunit-pretty-print": "^1.3",
"squizlabs/php_codesniffer": "^3.11",
"vimeo/psalm": "^5.26"
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint:phpcs": "phpcs --standard=PSR12,phpcs.xml -s src",
"lint:phpstan": "phpstan analyse --memory-limit 512M",
"lint:phpmd": "phpmd src ansi phpmd.xml",
"lint:rector": "rector process --dry-run",
"lint:psalm": "psalm",
"lint": [
"composer lint:phpcs",
"composer lint:phpstan",
"composer lint:phpmd",
"composer lint:rector",
"composer lint:psalm"
],
"ci": [
"composer lint",
"composer test"
],
"fix": [
"rector process",
"php-cs-fixer fix src",
"php-cs-fixer fix bin",
"php-cs-fixer fix config",
"php-cs-fixer fix tests"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}