-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.65 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "biurad/poakium",
"description": "A Monorepo for Full-stack PHP independent libraries. (metapackage)",
"license": "MIT",
"type": "project",
"keywords": ["php", "libraries", "metapackage", "monorepo", "full-stack", "framework"],
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"platform-check": false,
"process-timeout": 1800,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"wikimedia/composer-merge-plugin": "dev-master"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"php-parallel-lint/php-parallel-lint": "^1.3",
"symfony/var-dumper": "^6.0"
},
"replace": {
"symfony/polyfill-php80": "*",
"biurad/git-scm": "*",
"biurad/http-galaxy": "*"
},
"scripts": {
"coverage": [
"@phpcs --report-full",
"@pest --log-junit=build/unitreport.xml --coverage-text --coverage-html=build --coverage-clover=build/coverage.xml"
],
"test": [
"composer validate --no-interaction",
"@lint",
"@phpcs",
"@phan",
"@pest"
],
"phan": "@php vendor/bin/phpstan",
"phpcs": "@php vendor/bin/phpcs --encoding=utf-8 --extensions=php",
"lint": "@php vendor/bin/parallel-lint packages tools tests",
"pest": "@php vendor/bin/pest"
},
"extra": {
"merge-plugin": {
"include": [
"packages/*/composer.json",
"tools/*/composer.json"
],
"replace": true,
"merge-extra": true,
"merge-extra-deep": true
}
}
}