Skip to content

Commit

Permalink
Jobs fixes, more packages (#253)
Browse files Browse the repository at this point in the history
Co-authored-by: KimSpeer <[email protected]>
Co-authored-by: Kim-the-Diamond <[email protected]>
  • Loading branch information
3 people authored Dec 8, 2023
1 parent f4a3ba3 commit 47b739a
Show file tree
Hide file tree
Showing 172 changed files with 5,856 additions and 525 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<img alt="Laravel PINT PHP Code Style" src="https://github.com/mooxphp/moox/actions/workflows/pint.yml/badge.svg">
</a>
<a href="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml">
<img alt="PHPStan Level 5" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
<img alt="PHPStan Level 2" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
</a>
</p>
<p align="center">
Expand Down
2 changes: 1 addition & 1 deletion _custom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<img alt="Laravel PINT PHP Code Style" src="https://github.com/mooxphp/moox/actions/workflows/pint.yml/badge.svg">
</a>
<a href="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml">
<img alt="PHPStan Level 5" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
<img alt="PHPStan Level 2" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
</a>
</p>
<p align="center">
Expand Down
10 changes: 5 additions & 5 deletions _other/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<img alt="Laravel PINT PHP Code Style" src="https://github.com/mooxphp/moox/actions/workflows/pint.yml/badge.svg">
</a>
<a href="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml">
<img alt="PHPStan Level 5" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
<img alt="PHPStan Level 2" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
</a>
</p>
<p align="center">
Expand Down Expand Up @@ -64,7 +64,7 @@

Here is the place to find:

- [art](art/README.md) - the logo, banner images and screenshots
- [builder](builder/README.md) - our package skeleton template or plugin builder
- [satis](satis/README.md) - Satis, the self-hosted private Repo for Moox
- [vscode](vscode/README.md) - our VS Code Extension Pack for TALL-Stack developers
- [art](art/README.md) - the logo, banner images and screenshots
- [builder](builder/README.md) - our package skeleton template or plugin builder
- [satis](satis/README.md) - Satis, the self-hosted private Repo for Moox
- [vscode](vscode/README.md) - our VS Code Extension Pack for TALL-Stack developers
11 changes: 5 additions & 6 deletions _other/art/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<img alt="Laravel PINT PHP Code Style" src="https://github.com/mooxphp/moox/actions/workflows/pint.yml/badge.svg">
</a>
<a href="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml">
<img alt="PHPStan Level 5" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
<img alt="PHPStan Level 2" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
</a>
</p>
<p align="center">
Expand Down Expand Up @@ -68,10 +68,10 @@ Here is the place to find our logo, signet, screenshots and banners as well as i

Moox is a random word that:

- was a short .org domain I registered 20 years ago
- was a popular set of TYPO3 Extensions about 10 years ago
- sound good combined with techy words, try "Moox Blog"
- can be used like "google", try "let me moox your website"
- was a short .org domain I registered 20 years ago
- was a popular set of TYPO3 Extensions about 10 years ago
- sound good combined with techy words, try "Moox Blog"
- can be used like "google", try "let me moox your website"

## Moox Logo

Expand All @@ -88,7 +88,6 @@ The banner sizes are 1280 by 640 pixels.

Our screenshots should use the Moox Screenshot Mockup. Please take care of not leaking private data.


## Moox Bot

Moox Bot is the identity of our GitHub Bot. There are maybe more things, Moox Bot can do in the future ;-)
Expand Down
2 changes: 1 addition & 1 deletion _packages/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<img alt="Laravel PINT PHP Code Style" src="https://github.com/mooxphp/moox/actions/workflows/pint.yml/badge.svg">
</a>
<a href="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml">
<img alt="PHPStan Level 5" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
<img alt="PHPStan Level 2" src="https://github.com/mooxphp/moox/actions/workflows/phpstan.yml/badge.svg">
</a>
</p>
<p align="center">
Expand Down
49 changes: 49 additions & 0 deletions _packages/blog/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Environment
.env
.env.backup

# Composer
/vendor
composer.lock
auth.json

# NPM / Node
/node_modules
npm-debug.log
package-lock.json

# Laravel
/public/hot
/public/storage
/storage/*.key

# PHPUnit
.phpunit.result.cache
phpunit.xml

# Yarn
yarn-error.log

# PHPStan
/build
phpstan.neon

# Testbench
testbench.yaml

# PHP CS Fixer
.php-cs-fixer.cache

# Homestead
Homestead.json
Homestead.yaml

# IDEs
/.idea
/.vscode

# MacOS
.DS_Store

# Windows
Thumbs.db
1 change: 1 addition & 0 deletions _packages/blog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Changelog
21 changes: 21 additions & 0 deletions _packages/blog/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) Moox <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
53 changes: 51 additions & 2 deletions _packages/blog/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,52 @@
# wip
![Moox Blog](https://github.com/mooxphp/moox/raw/main/_other/art/banner/blog.jpg)

- This is only to trigger a test for mooxbot
# Moox Blog

This is my package blog

## Quick Installation

These two commmands are all you need to install the package:

```bash
composer require moox/blog
php artisan mooxblog:install
```

Curious what the install command does? See manual installation below.

## What does it do?

<!--whatdoes-->
This is my package blog
<!--/whatdoes-->


## Manual Installation

Instead of using the install-command `php artisan mooxblog:install` you are able to install this package manually step by step:

```bash
// Publish and run the migrations:
php artisan vendor:publish --tag="blog-migrations"
php artisan migrate

// Publish the config file with:
php artisan vendor:publish --tag="blog-config"
```

## Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

## Security Vulnerabilities

Please review [our security policy](https://github.com/mooxphp/moox/security/policy) on how to report security vulnerabilities.

## Credits

- [All Contributors](../../contributors)

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
13 changes: 13 additions & 0 deletions _packages/blog/SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Security Policy

## Supported Versions

We maintain the current version of `Moox Blog` actively.

Do not expect security fixes for older versions.

## Reporting a Vulnerability

If you find any security-related bug, please report it to [email protected].

Please do not use Github issues, to give us enough time to review and fix the issue, before others can use it, to do stupid things.
37 changes: 37 additions & 0 deletions _packages/blog/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "moox/blog",
"description": "This is my package blog",
"keywords": [
"Laravel",
"Filament",
"Filament plugin",
"Laravel package"
],
"homepage": "https://moox.org/",
"license": "MIT",
"authors": [
{
"name": "Moox Developer",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"spatie/laravel-package-tools": "^1.13.0",
"filament/filament": "^3.0"
},
"autoload": {
"psr-4": {
"Moox\\Blog\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Moox\\Blog\\BlogServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

return [
'resources' => [
'builder' => [
'blog' => [
'enabled' => true,
'label' => 'Builder',
'plural_label' => 'Builders',
'navigation_group' => 'Builder Group',
'label' => 'Blog',
'plural_label' => 'Blogs',
'navigation_group' => 'Blog Group',
'navigation_icon' => 'heroicon-o-play',
'navigation_sort' => 1,
'navigation_count_badge' => true,
'resource' => Moox\Builder\Resources\BuilderResource::class,
'resource' => Moox\Blog\Resources\BlogResource::class,
],
],
'pruning' => [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ return new class extends Migration
*/
public function up(): void
{
Schema::create('builder', function (Blueprint $table) {
Schema::create('blog', function (Blueprint $table) {
$table->id();
$table->string('name')->nullable();
$table->timestamp('started_at')->nullable()->index();
Expand All @@ -27,6 +27,6 @@ return new class extends Migration
public function down(): void

{
Schema::dropIfExists('builder');
Schema::dropIfExists('blog');
}
};
14 changes: 14 additions & 0 deletions _packages/blog/resources/lang/de/translations.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

return [
'breadcrumb' => 'Blog',
'title' => 'Blog',
'navigation_label' => 'Blog',
'navigation_group' => 'Blog Gruppe',
'totalone' => 'Blog Eins',
'totaltwo' => 'Blog Zwei',
'totalthree' => 'Blog Drei',
'name' => 'Name',
'started_at' => 'Gestartet',
'failed' => 'failed',
];
14 changes: 14 additions & 0 deletions _packages/blog/resources/lang/en/translations.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

return [
'breadcrumb' => 'Blog',
'title' => 'Blog',
'navigation_label' => 'Blog',
'navigation_group' => 'Blog Group',
'totalone' => 'Blog One',
'totaltwo' => 'Blog Two',
'totalthree' => 'Blog Three',
'name' => 'Name',
'started_at' => 'Started at',
'failed' => 'failed',
];
14 changes: 14 additions & 0 deletions _packages/blog/resources/lang/es/translations.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

return [
'breadcrumb' => 'Blog',
'title' => 'Blog',
'navigation_label' => 'Blog',
'navigation_group' => 'Blog Grupo',
'totalone' => 'Blog Uno',
'totaltwo' => 'Blog Dos',
'totalthree' => 'Blog Trés',
'name' => 'Nombre',
'started_at' => 'Empezó a las',
'failed' => 'failed',
];
14 changes: 14 additions & 0 deletions _packages/blog/resources/lang/nb_NO/translations.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

return [
'breadcrumb' => 'Bygger',
'title' => 'Bygger',
'navigation_label' => 'Bygger',
'navigation_group' => 'Byggergruppe',
'totalone' => 'Bygger én',
'totaltwo' => 'Bygger to',
'totalthree' => 'Bygger tre',
'name' => 'Navn',
'started_at' => 'Startet',
'failed' => 'mislyktes',
];
Loading

0 comments on commit 47b739a

Please sign in to comment.