2023-07-16 23:47:08

This commit is contained in:
z17CX 2023-07-16 23:47:08 +00:00
parent 8a1d75cccb
commit 1f585e0711
Signed by: z17cx
GPG Key ID: 3F5F87C84EE943E4
8 changed files with 84 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea/

0
CHANGELOG.md Normal file
View File

13
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,13 @@
# Contributing
- Feedback, wishes and suggestions can be sent by email.
- Constructive criticism, bug descriptions and other reports are welcome.
- Email: mail@ihub.to
## Sources
- [**GitHub**](https://github.com/pkgstore)
- [GitLab](https://gitlab.com/pkgstore) (MIRROR)
- [Codeberg](https://codeberg.org/pkgstore) (MIRROR)
- [MosHub](https://hub.mos.ru/pkgstore) (MIRROR)
- [Git.Org.Ru](https://git.org.ru/pkgstore) (MIRROR)

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2023 Package Store
Copyright (c) 2023 iHub TO <https://ihub.to>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

57
composer.json Normal file
View File

@ -0,0 +1,57 @@
{
"name": "pkgstore/flarum-ui-base",
"description": "",
"type": "flarum-extension",
"license": "MIT",
"homepage": "https://ihub.to/",
"keywords": [
"flarum",
"extension"
],
"authors": [
{
"name": "iHub TO",
"email": "mail@ihub.to",
"homepage": "https://ihub.to/",
"role": "Developer"
},
{
"name": "Kitsune Solar",
"email": "mail@kitsune.solar",
"homepage": "https://kitsune.solar/",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/pkgstore/flarum-ui-base",
"issues": "https://github.com/pkgstore/flarum-ui-base/issues",
"docs": "https://github.com/pkgstore/flarum-ui-base/wiki",
"forum": "https://github.com/pkgstore/flarum-ui-base/discussions"
},
"require": {
"flarum/core": "^1.2"
},
"autoload": {
"psr-4": {
"PkgStore\\UI_Base\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"flarum-extension": {
"title": "",
"category": "",
"info": {
"website": "https://ihub.to/",
"support": "https://github.com/pkgstore/flarum-ui-base/discussions"
},
"icon": {
"image": "",
"backgroundColor": "#ffffff",
"backgroundSize": "cover",
"backgroundPosition": "center"
}
}
}
}

12
extend.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace PkgStore\UI_Base;
use Flarum\Extend;
return [
(new Extend\Frontend('forum'))
->css(__DIR__ . '/less/forum.less'),
new Extend\Locales(__DIR__ . '/locale'),
];

0
less/forum.less Normal file
View File

0
locale/ru.yml Normal file
View File