-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 3.73 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 3.73 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
82
83
84
85
{
"name": "runopencode/phplib",
"description": "A collection of PHP libraries within mono-repository.",
"license": "MIT",
"authors": [
{
"name": "Nikola Svitlica a.k.a TheCelavi",
"email": "thecelavi@runopencode.com"
}
],
"type": "library",
"require": {
"php": ">=8.4",
"doctrine/dbal": "^4.0",
"psr/cache": "^3.0",
"psr/container": "^2.0",
"psr/log": "^2.0|^3.0",
"symfony/cache": "^7.0",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/finder": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/process": "^7.3",
"symfony/string": "^7.0",
"thecodingmachine/safe": "^3.3",
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.88",
"matthiasnoback/symfony-dependency-injection-test": "^6.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^12.5",
"rector/rector": "*",
"symplify/monorepo-builder": "12.2"
},
"autoload": {
"psr-4": {
"RunOpenCode\\Component\\Bitmask\\": "src/RunOpenCode/Component/Bitmask/src/",
"RunOpenCode\\Component\\Dataset\\": "src/RunOpenCode/Component/Dataset/src/",
"RunOpenCode\\Component\\Logger\\": "src/RunOpenCode/Component/Logger/src/",
"RunOpenCode\\Component\\Metadata\\": "src/RunOpenCode/Component/Metadata/src/",
"RunOpenCode\\Component\\Query\\": "src/RunOpenCode/Component/Query/src/",
"RunOpenCode\\Bundle\\LoggerBundle\\": "src/RunOpenCode/Bundle/LoggerBundle/src/",
"RunOpenCode\\Bundle\\QueryBundle\\": "src/RunOpenCode/Bundle/QueryBundle/src/",
"RunOpenCode\\Bundle\\MetadataBundle\\": "src/RunOpenCode/Bundle/MetadataBundle/src/",
"Monorepo\\": "monorepo/"
},
"files": [
"src/RunOpenCode/Component/Dataset/src/functions.php",
"src/RunOpenCode/Component/Query/src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"RunOpenCode\\Component\\Bitmask\\Tests\\": "src/RunOpenCode/Component/Bitmask/tests/",
"RunOpenCode\\Component\\Dataset\\Tests\\": "src/RunOpenCode/Component/Dataset/tests/",
"RunOpenCode\\Component\\Logger\\Tests\\": "src/RunOpenCode/Component/Logger/tests/",
"RunOpenCode\\Component\\Metadata\\Tests\\": "src/RunOpenCode/Component/Metadata/tests/",
"RunOpenCode\\Component\\Query\\Tests\\": "src/RunOpenCode/Component/Query/tests/",
"RunOpenCode\\Bundle\\LoggerBundle\\Tests\\": "src/RunOpenCode/Bundle/LoggerBundle/tests/",
"RunOpenCode\\Bundle\\QueryBundle\\Tests\\": "src/RunOpenCode/Bundle/QueryBundle/tests/",
"RunOpenCode\\Bundle\\MetadataBundle\\Tests\\": "src/RunOpenCode/Bundle/MetadataBundle/tests/"
}
},
"scripts": {
"phpunit": "XDEBUG_MODE=coverage vendor/bin/phpunit",
"phpunit:debug": "XDEBUG_MODE=debug,coverage vendor/bin/phpunit",
"phpstan": "XDEBUG_MODE=off vendor/bin/phpstan analyse --memory-limit=-1",
"phpcs": "XDEBUG_MODE=off vendor/bin/php-cs-fixer fix --diff --verbose --show-progress=dots --allow-risky=yes",
"deps": "bin/deps",
"phpmetrics": "phpmetrics --report-html=build/metrics src/",
"rector": "XDEBUG_MODE=off vendor/bin/rector process --ansi",
"infection": "infection --threads=max"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}