-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.96 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.96 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
{
"name": "domprojects/codeigniter4-bootstrap",
"description": "Bootstrap 5 asset publisher for CodeIgniter 4 projects.",
"type": "library",
"license": "MIT",
"keywords": [
"codeigniter4",
"codeigniter",
"bootstrap",
"assets",
"publisher"
],
"homepage": "https://github.com/domProjects/codeigniter4-bootstrap",
"support": {
"issues": "https://github.com/domProjects/codeigniter4-bootstrap/issues",
"source": "https://github.com/domProjects/codeigniter4-bootstrap"
},
"authors": [
{
"name": "domProjects",
"homepage": "https://github.com/domProjects",
"role": "Maintainer"
}
],
"require": {
"php": "^8.2",
"codeigniter4/framework": "^4.7.2",
"twbs/bootstrap": "^5.3.8"
},
"require-dev": {
"codeigniter4/devkit": "^1.3"
},
"autoload": {
"psr-4": {
"domProjects\\CodeIgniterBootstrap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"domProjects\\CodeIgniterBootstrap\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"analyze": [
"Composer\\Config::disableProcessTimeout",
"phpstan analyse -c phpstan.neon.dist --memory-limit=512M",
"psalm --config=psalm.xml",
"rector process --dry-run --config=rector.php"
],
"cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff --config=.php-cs-fixer.dist.php",
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff --config=.php-cs-fixer.dist.php",
"test": "@php -d xdebug.mode=coverage vendor/bin/phpunit -c phpunit.xml.dist"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}