# packeta/1.6.1/packeta.php

Packeta, version 1.6.1. 39 lines.

- Page: https://pluginprobe.com/plugins/packeta/1.6.1/code/packeta.php
- Raw: https://pluginprobe.com/plugins/packeta/1.6.1/raw/packeta.php
- Modified: 2023-09-01T10:06:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/1.6.1/code/packeta.php#L10-L20`.

```php
<?php
/**
 * Plugin implementing Packeta shipping methods.
 *
 * @package   Packeta
 *
 * @wordpress-plugin
 *
 * Plugin Name: Packeta
 * Description: This is the official plugin, that allows you to choose pickup points of Packeta and its external carriers in all of Europe, or utilize address delivery to 25 countries in the European Union, straight from the cart in your e-shop. Furthermore, you can also submit all your orders to Packeta with just one click.
 * Version: 1.6.1
 * Author: Zásilkovna s.r.o.
 * Author URI: https://www.zasilkovna.cz/
 * Text Domain: packeta
 * Domain Path: /languages
 * Requires at least: 5.3
 * Requires PHP: 7.2
 *
 * Tested up to: 6.3
 * WC requires at least: 4.5
 * WC tested up to: 8.0.0
 *
 * License: GNU General Public License v3.0
 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
 */

use Packetery\Module\Plugin;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( PHP_SAPI === 'cli' ) {
	return;
}

$container = require __DIR__ . '/bootstrap.php';
$container->getByType( Plugin::class )->run();

```
