Skip to content
This repository was archived by the owner on Oct 14, 2024. It is now read-only.

Commit bd2b6b0

Browse files
committed
Use Stripe library as regular files, not submodule
1 parent c793659 commit bd2b6b0

File tree

109 files changed

+11641
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+11641
-4
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,3 @@
2525
[submodule "site/plugins/field-selector"]
2626
path = site/plugins/field-selector
2727
url = https://github.com/storypioneers/kirby-selector
28-
[submodule "site/plugins/shopkit/gateways/2-stripecheckout/stripe-php"]
29-
path = site/plugins/shopkit/gateways/2-stripecheckout/stripe-php
30-
url = https://github.com/stripe/stripe-php.git
Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
service_name: travis-ci
2+
src_dir: .
3+
coverage_clover: clover.xml
4+
json_path: coveralls-upload.json
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Mac OS X dumps these all over the place.
2+
.DS_Store
3+
4+
# Ignore the SimpleTest library if it is installed to /test/.
5+
/test/simpletest/
6+
7+
# Ignore the /vendor/ directory for people using composer
8+
/vendor/
9+
10+
# If the vendor directory isn't being commited the composer.lock file should also be ignored
11+
composer.lock
12+
13+
# Ignore PHPUnit coverage file
14+
clover.xml
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: php
2+
3+
php:
4+
- 5.3
5+
- 5.4
6+
- 5.5
7+
- 5.6
8+
- 7.0
9+
- hhvm
10+
11+
env:
12+
- AUTOLOAD=1
13+
- AUTOLOAD=0
14+
15+
script: ./build.php ${AUTOLOAD}
16+
after_script: ./vendor/bin/coveralls -v
17+
sudo: false

0 commit comments

Comments
 (0)