Skip to content

Commit ce338c7

Browse files
committed
initial debianization
1 parent 2db8943 commit ce338c7

24 files changed

+1719
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@
77
!.php-cs-fixer.php
88
composer.lock
99
/nbproject/private/
10+
/debian/php-spojenet-kb-accountsapi/
11+
/nbproject/
12+
/debian/php-spojenet-kb-accountsapi.debhelper.log
13+
/debian/php-spojenet-kb-accountsapi.substvars
14+
/debian/debhelper-build-stamp

debian/README.Debian

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
php-spojenet-kb-accountsapi for Debian
2+
3+
Please edit this to provide information specific to
4+
this php-spojenet-kb-accountsapi Debian package.
5+
6+
(Automatically generated by debmake Version 4.5.1)
7+
8+
-- Vítězslav Dvořák <info@vitexsoftware.cz> Thu, 10 Apr 2025 15:03:07 +0200

debian/README.source

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
php-spojenet-kb-accountsapi for Debian
2+
3+
See Debian policy manual section 4.14.
4+
https://www.debian.org/doc/debian-policy/ch-source.html#source-package-handling-debian-readme-source
5+
6+
If running dpkg-source -x on a source package doesn’t produce the source of the
7+
package, ready for editing, and allow one to make changes and run
8+
dpkg-buildpackage to produce a modified package without taking any additional
9+
steps, creating this file explain how to do all of these is recommended.
10+
Otherwise, remove this file.
11+
12+
(Automatically generated by debmake Version 4.5.1)
13+
14+
-- Vítězslav Dvořák <info@vitexsoftware.cz> Thu, 10 Apr 2025 15:03:07 +0200

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
php-spojenet-kb-accountsapi (0.1.0) UNRELEASED; urgency=low
2+
3+
* Initial release. Closes: #nnnn
4+
<nnnn is the bug number of your ITP>
5+
6+
-- Vítězslav Dvořák <info@vitexsoftware.cz> Thu, 10 Apr 2025 15:03:07 +0200

debian/clean

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# You must remove unused comment lines for the released package.

debian/composer.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"name": "deb/kb-accountsapi",
3+
"description": "KB API client for Account Direct Access API (ADAA)",
4+
"keywords": ["php", "sdk", "rest", "api", "Komerční banka", "kb", "adaa"],
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Ladislav Vondráček",
9+
"email": "lad.von@gmail.com",
10+
"homepage": "https://www.lawondyss.cz"
11+
},
12+
{
13+
"name": "Vítězslav Dvořák",
14+
"email": "info@vitexsoftware.cz",
15+
"homepage": "https://vitexsoftware.com/"
16+
}
17+
],
18+
"config": {
19+
"vendor-dir": "/var/lib/composer/php-spojenet-kb-accountsapi"
20+
},
21+
"autoload": {
22+
"psr-4": {
23+
"SpojeNet\\KbAccountsApi\\": "./",
24+
"SpojeNet\\KbAccountsApi\\Entity\\": "./Entity",
25+
"SpojeNet\\KbAccountsApi\\Exception\\": "./Exception",
26+
"SpojeNet\\KbAccountsApi\\Selection\\": "./Selection",
27+
"SpojeNet\\KbAccountsApi\\Utils\\": "./Utils"
28+
}
29+
},
30+
31+
"minimum-stability": "dev",
32+
"require": {
33+
"php": ">=8.1",
34+
"guzzlehttp/guzzle": "^7.3"
35+
},
36+
"repositories": [
37+
{
38+
"type": "path",
39+
"url": "/usr/share/php/EaseCore"
40+
},
41+
{
42+
"type": "path",
43+
"url": "/usr/share/php/KbAccountsApi"
44+
},
45+
{
46+
"type": "path",
47+
"url": "/usr/share/php/GuzzleHttp"
48+
}
49+
],
50+
"type": "library",
51+
"homepage": "https://github.com/Spoje-NET/php-csas-accountsapi",
52+
"license": "MIT"
53+
}

debian/control

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Source: php-spojenet-kb-accountsapi
2+
Section: unknown
3+
Priority: optional
4+
Maintainer: Vítězslav Dvořák <info@vitexsoftware.cz>
5+
Build-Depends:
6+
debhelper-compat (= 13),
7+
Standards-Version: 4.7.0
8+
Homepage: https://github.com/Spoje-NET/php-kb-accountsapi
9+
Rules-Requires-Root: no
10+
Vcs-Git: https://github.com/Spoje-NET/php-kb-accountsapi.git
11+
Vcs-Browser: https://github.com/Spoje-NET/php-kb-accountsapi
12+
13+
Package: php-spojenet-kb-accountsapi
14+
Architecture: any
15+
Multi-Arch: foreign
16+
Depends:
17+
${misc:Depends},
18+
${shlibs:Depends},
19+
php-guzzlehttp-psr7
20+
Description: KB API client for Account Direct Access API (ADAA)
21+
Connect your php application to
22+
* Client’s transaction history
23+
* Bank account balance
24+
* Information about transaction history is provided in connection with current accounts of a client of Komerční banka.

0 commit comments

Comments
 (0)