-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
103 lines (103 loc) · 2.81 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
94
95
96
97
98
99
100
101
102
103
{
"name": "bluesmith/bluesmith",
"description": "3D print job management",
"license": "Mozilla Public License Version 2.0",
"type": "project",
"keywords": [
"codeigniter",
"codeigniter4",
"bluesmith",
"workflow",
"management",
"3d",
"printing"
],
"authors": [
{
"name": "Matthew Gatner",
"email": "[email protected]",
"homepage": "https://tattersoftware.com",
"role": "Developer"
},
{
"name": "Matthew Gatner",
"email": "[email protected]",
"homepage": "https://duke.edu",
"role": "Developer"
}
],
"homepage": "https://github.com/tattersoftware/bluesmith",
"require": {
"php": "^8.1",
"chubv/php-stl": "^2.1",
"codeigniter4/framework": "^4.1",
"codeigniter4/tasks": "dev-develop",
"myth/auth": "^1.2.1",
"tatter/addins": "^3.0",
"tatter/chat": "^3.0",
"tatter/files": "^3.0",
"tatter/forms": "^0.10",
"tatter/frontend": "^1.0",
"tatter/workflows": "^5.0",
"tinymce/tinymce": "^5.0"
},
"require-dev": {
"psr/container": "^1.1",
"rector/rector": "^0.14.0",
"tatter/patches": "^2.0",
"tatter/tools": "^2.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/lonnieezell/codeigniter4-tasks.git"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"analyze": [
"phpstan analyze",
"psalm",
"rector process --dry-run"
],
"ci": [
"Composer\\Config::disableProcessTimeout",
"@deduplicate",
"@analyze",
"@composer normalize --dry-run",
"@test",
"@inspect",
"@style"
],
"deduplicate": "phpcpd app/ src/",
"inspect": "deptrac analyze --cache-file=build/deptrac.cache",
"mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit",
"patch": "patch",
"retool": "retool",
"style": "php-cs-fixer fix --verbose --ansi --using-cache=no",
"test": "phpunit"
}
}