Skip to content

Commit 43c77d3

Browse files
authored
Merge pull request #4 from mauricerenck/feature/autoloader-fix
Feature/autoloader fix
2 parents 18298bd + c76df9f commit 43c77d3

File tree

500 files changed

+16841
-3674
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

500 files changed

+16841
-3674
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
content export-ignore
22
site export-ignore
3-
src export-ignore
3+
# src export-ignore
44

55
.editorconfig export-ignore
66
.gitattributes export-ignore

composer.json

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mauricerenck/komments",
3-
"version": "0.9.12",
3+
"version": "0.9.13",
44
"description": "A comment and webmention plugin for Kirby 3",
55
"type": "kirby-plugin",
66
"license": "MIT",
@@ -11,12 +11,11 @@
1111
}
1212
],
1313
"autoload": {
14-
"files": [
15-
"utils/sendMastodon.php",
16-
"utils/sendWebmention.php",
17-
"utils/receiveKomment.php",
18-
"utils/moderation.php",
19-
"utils/base.php"
14+
"psr-4": {
15+
"mauricerenck\\Komments\\": "utils"
16+
},
17+
"classmap": [
18+
"utils"
2019
]
2120
},
2221
"require": {
@@ -29,8 +28,5 @@
2928
"scripts": {
3029
"testKirby": "phpunit --bootstrap ./tests/bootstrap.php --testdox ./tests/suites",
3130
"test": "phpunit --testdox ./tests/suites"
32-
},
33-
"require-dev": {
34-
"phpunit/phpunit": "^9"
3531
}
3632
}

0 commit comments

Comments
 (0)