-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.24 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.24 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
{
"name": "simplemachines/smf",
"repositories": [
{
"url": "https://github.com/SimpleMachines/BuildTools.git",
"type": "vcs"
}
],
"autoload": {
"psr-4": {
"SMF\\": "Sources/",
"SMF\\Themes\\": "Themes/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"simplemachines/build-tools": "dev-release-3.0",
"friendsofphp/php-cs-fixer": "^3.40"
},
"scripts": {
"lint": "php-cs-fixer --quiet check --config .php-cs-fixer.dist.php --path-mode=intersection $(git diff --name-only \"*.php\") --allow-risky=yes || php-cs-fixer check --diff --config .php-cs-fixer.dist.php --path-mode=intersection $(git diff --name-only \"*.php\") --allow-risky=yes",
"lint-fix": "php-cs-fixer fix -v --config .php-cs-fixer.dist.php --path-mode=intersection $(git diff --name-only \"*.php\") --allow-risky=yes",
"post-install-cmd": "php ./vendor/simplemachines/build-tools/secure-vendor-dir.php",
"post-update-cmd": "php ./vendor/simplemachines/build-tools/secure-vendor-dir.php"
},
"config": {
"platform": {
"php": "8.4.1"
}
},
"require": {
"google/recaptcha": "^1.3",
"matthiasmullie/minify": "^1.3",
"bjeavons/zxcvbn-php": "^1.0",
"matthiasmullie/path-converter": "^1.1",
"league/container": "^4.0"
}
}