-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (46 loc) · 1.23 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
47
{
"name": "grifart/stateful",
"type": "library",
"description": "Serializes any object into primitive types and arrays.",
"scripts": {
"verify": [
"composer run syntax-check",
"composer run phpstan",
"composer run tester"
],
"tester": "vendor/bin/tester -c tests/php-unix.ini tests/Stateful",
"phpstan": "vendor/bin/phpstan analyze -c phpstan.neon --ansi --no-progress --no-interaction --level max src",
"syntax-check": "vendor/bin/parallel-lint src tests"
},
"require": {
"php": "^8.0",
"php-ds/php-ds": "^1.1",
"grifart/comparable-polyfill": "^1.0",
"grifart/equalable-utils": "^1.0"
},
"require-dev": {
"grifart/scaffolder": "^0.6.0",
"nette/tester": "^2.0.0",
"mockery/mockery": "^1.0.0",
"phpstan/phpstan": "^1.4",
"php-parallel-lint/php-parallel-lint": "^1.0",
"php-parallel-lint/php-console-color": "^1.0",
"brick/date-time": "^0.2.1"
},
"suggest": {
"grifart/scaffolder": "stateful provides integration into scaffolder"
},
"autoload": {
"psr-4": {
"Grifart\\Stateful\\": "src/"
},
"classmap": ["src/exceptions.php"],
"files": ["src/Bridge/Scaffolder/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Grifart\\Stateful\\": "tests/Stateful"
},
"files": ["src/exceptions.php"]
}
}