Skip to content

Commit

Permalink
refactor: w-vision β†’ instride πŸ”„
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongerig committed Feb 6, 2024
1 parent 5290bbd commit b895896
Show file tree
Hide file tree
Showing 37 changed files with 130 additions and 130 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# License
Copyright (C) 2016-2023 w-vision AG
Copyright (C) 2016-2024 instride AG

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![Pimcore Monitor Bundle](docs/images/github_banner.png "Pimcore Monitor Bundle")
![Pimcore Monitor](docs/images/github_banner.png "Pimcore Monitor")

[![Software License](https://img.shields.io/badge/license-GPLv3-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Latest Stable Version](https://img.shields.io/packagist/v/w-vision/pimcore-monitor-bundle.svg?style=flat-square)](https://packagist.org/packages/w-vision/pimcore-monitor-bundle)
[![Latest Stable Version](https://img.shields.io/packagist/v/instride/pimcore-monitor.svg?style=flat-square)](https://packagist.org/packages/instride/pimcore-monitor)

This bundle provides a way to run a series of Pimcore and application related health checks. Each health check should
implement some application logic that you want to make sure always works. Another usage can be testing for specific
Expand Down Expand Up @@ -31,8 +31,8 @@ requirements, like availability of PHP extensions.
* [Defaults](docs/03-defaults.md)

## License
**w-vision AG**, Sandgruebestrasse 4, 6210 Sursee, Switzerland
support@w-vision.ch, [w-vision.ch](https://www.w-vision.ch)
Copyright Β© 2023 w-vision AG. All rights reserved.
**instride AG**, Sandgruebestrasse 4, 6210 Sursee, Switzerland
connect@instride.ch, [instride.ch](https://instride.ch)
Copyright Β© 2024 instride AG. All rights reserved.

For licensing details please visit [LICENSE.md](LICENSE.md)
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "w-vision/pimcore-monitor-bundle",
"name": "instride/pimcore-monitor",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"description": "Monitoring for Pimcore instances",
"keywords": [
"pimcore",
"pimcore-bundle"
],
"homepage": "https://github.com/w-vision/PimcoreMonitorBundle",
"homepage": "https://github.com/instride-ch/PimcoreMonitorBundle",
"authors": [
{
"name": "w-vision AG",
"email": "support@w-vision.ch",
"homepage": "https://www.w-vision.ch",
"role": "Web Development Agency"
"name": "instride AG",
"email": "connect@instride.ch",
"homepage": "https://instride.ch",
"role": "Digital Agency"
}
],
"require": {
Expand All @@ -31,13 +31,13 @@
},
"autoload": {
"psr-4": {
"Wvision\\Bundle\\PimcoreMonitorBundle\\": "src/PimcoreMonitorBundle/"
"Instride\\Bundle\\PimcoreMonitorBundle\\": "src/PimcoreMonitorBundle/"
}
},
"extra": {
"pimcore": {
"bundles": [
"Wvision\\Bundle\\PimcoreMonitorBundle\\PimcoreMonitorBundle"
"Instride\\Bundle\\PimcoreMonitorBundle\\PimcoreMonitorBundle"
]
},
"branch-alias": {
Expand Down
4 changes: 2 additions & 2 deletions deployer/monitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Deployer;
Expand Down
2 changes: 1 addition & 1 deletion docs/00-installation-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### Install with Composer

```
composer require w-vision/pimcore-monitor-bundle:^1.0
composer require instride/pimcore-monitor:^2.0
```

### Enabled the Bundle
Expand Down
4 changes: 2 additions & 2 deletions docs/01-adding-custom-checks.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and provide the following methods in addition to a unique identifier.
```php
<?php

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Laminas\Diagnostics\Result\ResultInterface;

Expand Down Expand Up @@ -37,4 +37,4 @@ a `ResultInterface` instance. It is recommended to use the built-in result class
with the diagnostics Runner and other checks.

> **Note:** This bundle ships with many [checks](../src/PimcoreMonitorBundle/Check) that can serve
> as an example of how to write your own checks.
> as an example of how to write your own checks.
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/AbstractCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Laminas\Diagnostics\Check\CheckInterface as BaseCheckInterface;

Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/AppEnvironment.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Laminas\Diagnostics\Result\Failure;
use Laminas\Diagnostics\Result\ResultInterface;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/CheckInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

interface CheckInterface
{
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/DatabaseSize.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2023 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Doctrine\DBAL\Connection;
use Laminas\Diagnostics\Result\Failure;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/DatabaseTableSize.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2023 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Doctrine\DBAL\Connection;
use Laminas\Diagnostics\Result\Failure;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/DiskUsage.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Laminas\Diagnostics\Result\Failure;
use Laminas\Diagnostics\Result\ResultInterface;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/DoctrineMigrations.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Doctrine\Migrations\Configuration\Configuration;
use Doctrine\Migrations\DependencyFactory;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/HostingSize.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Laminas\Diagnostics\Result\Failure;
use Laminas\Diagnostics\Result\ResultInterface;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/HttpsConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Laminas\Diagnostics\Result\Failure;
use Laminas\Diagnostics\Result\ResultInterface;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/MySqlVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Doctrine\DBAL\Connection;
use Laminas\Diagnostics\Result\Failure;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/PhpVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Laminas\Diagnostics\Result\Failure;
use Laminas\Diagnostics\Result\ResultInterface;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/PimcoreAreabricks.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Laminas\Diagnostics\Result\ResultInterface;
use Laminas\Diagnostics\Result\Skip;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/PimcoreBundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Laminas\Diagnostics\Result\ResultInterface;
use Laminas\Diagnostics\Result\Skip;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/PimcoreElementCount.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Driver\Exception as DBALDriverException;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/PimcoreMaintenance.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Carbon\Carbon;
use Laminas\Diagnostics\Result\Failure;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/PimcoreUsers.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Carbon\Carbon;
use Laminas\Diagnostics\Result\ResultInterface;
Expand Down
6 changes: 3 additions & 3 deletions src/PimcoreMonitorBundle/Check/PimcoreVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Check;
namespace Instride\Bundle\PimcoreMonitorBundle\Check;

use Composer\InstalledVersions;
use Laminas\Diagnostics\Result\ResultInterface;
Expand Down
8 changes: 4 additions & 4 deletions src/PimcoreMonitorBundle/Command/HealthCheckCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
*
* @copyright Copyright (c) 2022 w-vision AG (https://www.w-vision.ch)
* @license https://github.com/w-vision/PimcoreMonitorBundle/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
* @copyright 2024 instride AG (https://instride.ch)
* @license https://github.com/instride-ch/PimcoreMonitorBundle/blob/main/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
*/

namespace Wvision\Bundle\PimcoreMonitorBundle\Command;
namespace Instride\Bundle\PimcoreMonitorBundle\Command;

use Laminas\Diagnostics\Runner\Reporter\BasicConsole;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Wvision\Bundle\PimcoreMonitorBundle\Manager\RunnerManager;
use Instride\Bundle\PimcoreMonitorBundle\Manager\RunnerManager;

class HealthCheckCommand extends Command
{
Expand Down

0 comments on commit b895896

Please sign in to comment.