Skip to content

Commit

Permalink
Release v2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitexus committed Feb 17, 2021
1 parent a479359 commit c143806
Show file tree
Hide file tree
Showing 242 changed files with 676 additions and 311 deletions.
5 changes: 3 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
php-abraflexi (2.2) UNRELEASED; urgency=medium
php-abraflexi (2.3) UNRELEASED; urgency=medium

[ Vítězslav Dvořák ]
* ease-core based
Expand All @@ -20,8 +20,9 @@ php-abraflexi (2.2) UNRELEASED; urgency=medium
* Update fro AbraFlexi 2020.3.0.1
* Update for FlexiBee 2020.3.0.3
* Update for AbraFlexi 2020.3.0.10
* Attachment saving optimization

-- CyberVitexus <[email protected]> Mon, 04 Jan 2021 03:44:26 +0100
-- CyberVitexus <[email protected]> Wed, 17 Feb 2021 08:19:44 +0100

flexipeehp (1.12) experimental; urgency=medium

Expand Down
5 changes: 4 additions & 1 deletion debian/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Library for easy interaction with czech accounting system AbraFlexi.",
"homepage": "https://github.com/Spoje-NET/php-abraflexi",
"license": "GPL-2.0+",
"version": "2.2",
"version": "2.3",
"type": "library",
"authors": [
{
Expand All @@ -21,6 +21,9 @@
"AbraFlexi\\": "."
}
},
"config": {
"vendor-dir": "/var/lib/php-abraflexi"
},
"repositories": [
{
"type": "path",
Expand Down
8 changes: 4 additions & 4 deletions debian/files
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
php-abraflexi_2.2_all.buildinfo - optional
php-spojenet-abraflexi-dev_2.2_all.deb web optional
php-spojenet-abraflexi-doc_2.2_all.deb doc optional
php-spojenet-abraflexi_2.2_all.deb web optional
php-abraflexi_2.3_amd64.buildinfo - optional
php-spojenet-abraflexi-dev_2.3_all.deb web optional
php-spojenet-abraflexi-doc_2.3_all.deb doc optional
php-spojenet-abraflexi_2.3_all.deb web optional
6 changes: 4 additions & 2 deletions debian/php-spojenet-abraflexi.install
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
src/AbraFlexi/*.php /usr/share/php/AbraFlexi
debian/composer.json /usr/share/php/AbraFlexi
static/* /usr/share/php/AbraFlexi/static
debian/composer.json /usr/share/php/AbraFlexi
static/* /usr/share/php/AbraFlexi/static
tools/* /usr/share/php/AbraFlexi/tools
debian/bootstrap.php /usr/share/php/AbraFlexi/tools
1 change: 1 addition & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ override_dh_install:
jq '.version = "'`dpkg-parsechangelog | sed -n 's/^Version: //p'`'"' debian/composer.json |sponge debian/composer.json
dh_install
sed -i -e "s/\/\.\.\/\.\.\//\//g" debian/php-spojenet-abraflexi/usr/share/php/AbraFlexi/RO.php
sed -i -e "s/\.\.\/testing\//\/usr\/share\/php\/AbraFlexi\/tools\//g" debian/php-spojenet-abraflexi/usr/share/php/AbraFlexi/tools/*.php
5 changes: 3 additions & 2 deletions debian/test/flexibeeping.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/usr/bin/env php
<?php

/**
* FlexiPeeHP - Test in Debian.
*
* @author Vítězslav Dvořák <[email protected]>
* @copyright 2017 Spoje.Net
* @copyright 2017-2021 Spoje.Net
*/
$autoload = '/tmp/flexipeehpdebiantest/autoload.php';
if (file_exists($autoload)) {
Expand All @@ -20,7 +21,7 @@
$config = './config.json';
}

\Ease\Shared::instanced()->loadConfig($config,true);
\Ease\Shared::instanced()->loadConfig($config, true);

$tester = new \FlexiPeeHP\Company();

Expand Down
26 changes: 12 additions & 14 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="./testing/bootstrap.php">
<testsuites>
<testsuite name="all">
<directory>./testing</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory suffix=".php">src/AbraFlexi</directory>
</whitelist>
</filter>

<!-- logging>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="./testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src/AbraFlexi</directory>
</include>
</coverage>
<testsuites>
<testsuite name="all">
<directory>./testing</directory>
</testsuite>
</testsuites>
<!-- logging>
<log type="tap" target="build/report.tap"/>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-text" target="php://stdout"/>
Expand Down
Loading

0 comments on commit c143806

Please sign in to comment.