This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Stripe library as regular files, not submodule
- Loading branch information
Showing
109 changed files
with
11,641 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule stripe-php
deleted from
2ebcac
4 changes: 4 additions & 0 deletions
4
site/plugins/shopkit/gateways/2-stripecheckout/stripe-php/.coveralls.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
service_name: travis-ci | ||
src_dir: . | ||
coverage_clover: clover.xml | ||
json_path: coveralls-upload.json |
14 changes: 14 additions & 0 deletions
14
site/plugins/shopkit/gateways/2-stripecheckout/stripe-php/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Mac OS X dumps these all over the place. | ||
.DS_Store | ||
|
||
# Ignore the SimpleTest library if it is installed to /test/. | ||
/test/simpletest/ | ||
|
||
# Ignore the /vendor/ directory for people using composer | ||
/vendor/ | ||
|
||
# If the vendor directory isn't being commited the composer.lock file should also be ignored | ||
composer.lock | ||
|
||
# Ignore PHPUnit coverage file | ||
clover.xml |
17 changes: 17 additions & 0 deletions
17
site/plugins/shopkit/gateways/2-stripecheckout/stripe-php/.travis.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- hhvm | ||
|
||
env: | ||
- AUTOLOAD=1 | ||
- AUTOLOAD=0 | ||
|
||
script: ./build.php ${AUTOLOAD} | ||
after_script: ./vendor/bin/coveralls -v | ||
sudo: false |
Oops, something went wrong.