-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
93 lines (93 loc) · 2.76 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "neilime/twbs-helper-module",
"type": "library",
"description": "Laminas (formerly Zend Framework) module for easy integration of Twitter Bootstrap",
"keywords": [
"Laminas",
"Zend Framework",
"Twitter Bootstrap",
"module"
],
"homepage": "http://neilime.github.io/twbs-helper-module/",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Neilime",
"homepage": "https://github.com/neilime",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/neilime/twbs-helper-module/issues"
},
"suggest": {
"neilime/zf2-assets-bundle": "Bundling & caching Twitter Bootstrap assets",
"twitter/bootstrap": "Twitter bootstrap assets"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-escaper": "^2.12",
"laminas/laminas-form": "^3.4",
"laminas/laminas-i18n": "^2.17",
"laminas/laminas-navigation": "^2.15",
"laminas/laminas-paginator": "^2.13",
"laminas/laminas-servicemanager": "^3.17",
"laminas/laminas-stdlib": "^3.13",
"laminas/laminas-view": "^2.23"
},
"require-dev": {
"jfcherng/php-diff": "^6.12",
"laminas/laminas-component-installer": "^3.0",
"laminas/laminas-modulemanager": "^2.12",
"laminas/laminas-mvc": "^3.3",
"mikey179/vfsstream": "^1.6",
"pcov/clobber": "^2.0",
"phpunit/phpunit": "^9.5.26",
"spatie/phpunit-snapshot-assertions": "^4.2",
"twbs/bootstrap": "^5.1"
},
"autoload": {
"psr-4": {
"TwbsHelper\\": "src/TwbsHelper"
}
},
"autoload-dev": {
"psr-4": {
"TestSuite\\": "tests/TestSuite",
"Documentation\\": "src/Documentation"
}
},
"scripts": {
"test": "phpunit --colors --configuration tests/phpunit.xml",
"test:update-snapshot": "@test -d --update-snapshots",
"test:ci": "@test -d pcov.enabled=1 -d max_execution_time=0 --coverage-text --coverage-clover ./build/logs/clover.xml --coverage-html ./build/coverage/",
"generate-docs": "php scripts/generateDocumentation.php",
"generate-snapshot": "php scripts/generateSnapshot.php",
"php-cs-fixer": "@php-cs-fixer:fix --dry-run",
"php-cs-fixer:fix": "tools/vendor/bin/php-cs-fixer fix --show-progress=dots --diff --config=.php-cs-fixer.dist.php",
"stan": "tools/vendor/bin/phpstan analyse --level 5 src",
"ci": [
"@php-cs-fixer",
"@stan",
"@test:ci"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"laminas/laminas-component-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
},
"laminas": {
"module": "TwbsHelper",
"config-provider": "TwbsHelper\\ConfigProvider"
}
}
}