-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·70 lines (70 loc) · 1.81 KB
/
composer.json
File metadata and controls
executable file
·70 lines (70 loc) · 1.81 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
{
"name": "myimouto/myimouto",
"description": "Image board for PHP 8.5 and MySQL",
"license": "MIT",
"keywords": [
"myimouto",
"booru",
"image board"
],
"require": {
"php": ">=8.5.0",
"railsphp/railsphp": "1.0.*",
"railsphp/willpaginate": "1.0.*",
"railsphp/actsasversioned": "1.0.*",
"michelf/php-markdown": "1.3.*",
"phpmailer/phpmailer": "^6.10"
},
"replace": {
"toopay/assetic-minifier": "*",
"zendframework/zend-mail": "*",
"zendframework/zend-crypt": "*"
},
"autoload": {
"psr-4": {
"MyImouto\\": "lib/MyImouto/",
"Zend\\": "lib/Zend/"
}
},
"scripts": {
"ci:lint": [
"@php script/ci/lint.php"
],
"test": [
"@php script/ci/phpunit.php"
],
"test:coverage": [
"@php script/ci/phpunit.php --coverage-clover coverage/clover.xml --coverage-text"
],
"analyse": [
"@php script/ci/phpstan.php"
],
"cs-check": [
"@php script/ci/php_cs_fixer_check.php"
],
"cs-fix": [
"@php script/ci/php_cs_fixer_fix.php"
],
"assets:compile": [
"@php config/boot.php assets compile:all"
],
"assets:verify": [
"@php script/verify-assets.php"
],
"assets:build": [
"@assets:compile",
"@assets:verify"
],
"post-install-cmd": [
"@php script/apply-php85-compat.php"
],
"post-update-cmd": [
"@php script/apply-php85-compat.php"
]
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"phpstan/phpstan": "^2.1",
"php-cs-fixer/shim": "^3.94"
}
}