├── sample-application
├── ui
│ ├── pesapal.html
│ ├── images
│ │ └── pesapal.png
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── footer.html
│ ├── thanks.html
│ ├── header.html
│ ├── checkout.html
│ └── choose.html
├── 1-choose-items-to-buy.PNG
├── 3-confirm-transaction.PNG
├── 4-buying-successful.PNG
├── 2-add-buyer-information.PNG
├── config.ini
├── .htaccess
├── lib
│ ├── f3.php
│ ├── code.css
│ ├── log.php
│ ├── web
│ │ ├── google
│ │ │ ├── recaptcha.php
│ │ │ └── staticmap.php
│ │ ├── geo.php
│ │ ├── oauth2.php
│ │ ├── pingback.php
│ │ └── openid.php
│ ├── test.php
│ ├── bcrypt.php
│ ├── matrix.php
│ ├── magic.php
│ ├── db
│ │ ├── mongo.php
│ │ ├── jig.php
│ │ ├── jig
│ │ │ ├── session.php
│ │ │ └── mapper.php
│ │ ├── mongo
│ │ │ ├── session.php
│ │ │ └── mapper.php
│ │ ├── sql
│ │ │ └── session.php
│ │ ├── cursor.php
│ │ └── sql.php
│ ├── session.php
│ ├── utf.php
│ ├── audit.php
│ ├── basket.php
│ ├── auth.php
│ ├── PesaPal.php
│ ├── template.php
│ ├── smtp.php
│ ├── cli
│ │ └── ws.php
│ └── markdown.php
├── README.md
└── index.php
├── README.md
└── lib
└── PesaPal.php
/sample-application/ui/pesapal.html:
--------------------------------------------------------------------------------
1 |
2 | {{@content | raw}}
3 |
--------------------------------------------------------------------------------
/sample-application/ui/images/pesapal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alienwithin/F3-Pesapal/master/sample-application/ui/images/pesapal.png
--------------------------------------------------------------------------------
/sample-application/1-choose-items-to-buy.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alienwithin/F3-Pesapal/master/sample-application/1-choose-items-to-buy.PNG
--------------------------------------------------------------------------------
/sample-application/3-confirm-transaction.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alienwithin/F3-Pesapal/master/sample-application/3-confirm-transaction.PNG
--------------------------------------------------------------------------------
/sample-application/4-buying-successful.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alienwithin/F3-Pesapal/master/sample-application/4-buying-successful.PNG
--------------------------------------------------------------------------------
/sample-application/2-add-buyer-information.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alienwithin/F3-Pesapal/master/sample-application/2-add-buyer-information.PNG
--------------------------------------------------------------------------------
/sample-application/ui/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alienwithin/F3-Pesapal/master/sample-application/ui/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/sample-application/ui/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alienwithin/F3-Pesapal/master/sample-application/ui/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/sample-application/ui/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alienwithin/F3-Pesapal/master/sample-application/ui/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/sample-application/ui/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alienwithin/F3-Pesapal/master/sample-application/ui/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/sample-application/config.ini:
--------------------------------------------------------------------------------
1 | [globals]
2 | DEBUG=3
3 | UI=ui/
4 | [PESAPAL]
5 | consumer_key=
6 | consumer_secret=
7 | call_back=
8 | currency=KES
9 | type=MERCHANT
10 | endpoint=sandbox
11 | log=1
--------------------------------------------------------------------------------
/sample-application/ui/footer.html:
--------------------------------------------------------------------------------
1 |
5 |