Skip to content

Commit df9b3ad

Browse files
Adds SMF\Themes namespace to composer.json
Signed-off-by: Jon Stovell <[email protected]>
1 parent 0d689e2 commit df9b3ad

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

composer.json

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
{
2-
"name": "simplemachines/smf",
3-
"repositories": [
4-
{
5-
"url": "https://github.com/SimpleMachines/BuildTools.git",
6-
"type": "vcs"
7-
}
8-
],
2+
"name": "simplemachines/smf",
3+
"repositories": [
4+
{
5+
"url": "https://github.com/SimpleMachines/BuildTools.git",
6+
"type": "vcs"
7+
}
8+
],
99
"autoload": {
1010
"psr-4": {
11-
"SMF\\": "Sources/"
11+
"SMF\\": "Sources/",
12+
"SMF\\Themes\\": "Themes/"
13+
}
14+
},
15+
"minimum-stability": "dev",
16+
"prefer-stable": true,
17+
"require-dev": {
18+
"simplemachines/build-tools": "dev-release-3.0",
19+
"friendsofphp/php-cs-fixer": "^3.40"
20+
},
21+
"scripts": {
22+
"lint": "php-cs-fixer --quiet check --config .php-cs-fixer.dist.php --path-mode=intersection $(git diff --name-only \"*.php\") || php-cs-fixer check --diff --config .php-cs-fixer.dist.php --path-mode=intersection $(git diff --name-only \"*.php\") --allow-risky=yes",
23+
"lint-fix": "php-cs-fixer fix -v --config .php-cs-fixer.dist.php --path-mode=intersection $(git diff --name-only \"*.php\") --allow-risky=yes"
24+
},
25+
"config": {
26+
"platform": {
27+
"php": "8.0.0"
1228
}
1329
},
14-
"minimum-stability": "dev",
15-
"prefer-stable": true,
16-
"require-dev": {
17-
"simplemachines/build-tools": "dev-release-3.0",
18-
"friendsofphp/php-cs-fixer": "^3.40"
19-
},
20-
"scripts": {
21-
"lint": "php-cs-fixer --quiet check --config .php-cs-fixer.dist.php --path-mode=intersection $(git diff --name-only \"*.php\") || php-cs-fixer check --diff --config .php-cs-fixer.dist.php --path-mode=intersection $(git diff --name-only \"*.php\") --allow-risky=yes",
22-
"lint-fix": "php-cs-fixer fix -v --config .php-cs-fixer.dist.php --path-mode=intersection $(git diff --name-only \"*.php\") --allow-risky=yes"
23-
},
24-
"config": {
25-
"platform": {
26-
"php": "8.0.0"
27-
}
28-
},
2930
"require": {
3031
"google/recaptcha": "^1.3",
3132
"matthiasmullie/minify": "^1.3",
3233
"bjeavons/zxcvbn-php": "^1.0",
33-
"matthiasmullie/path-converter": "^1.1"
34+
"matthiasmullie/path-converter": "^1.1"
3435
}
3536
}

0 commit comments

Comments
 (0)