Skip to content

Commit

Permalink
[offline] reorganize offline component classes. remove src folder.
Browse files Browse the repository at this point in the history
makasim committed Dec 2, 2013
1 parent 2888452 commit 86cd591
Showing 16 changed files with 18 additions and 13 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -8,10 +8,6 @@ php:
before_script:
- composer install --dev --no-interaction --prefer-source

branches:
only:
- master

notifications:
email:
- [email protected]
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Changelog

See https://github.com/Payum/Payum/blob/master/CHANGELOG.md
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ Provide integration of paypal express checkout api to payum.

* [Documentation](http://payum.forma-dev.com/documentation#Offline)
* [Questions](http://stackoverflow.com/questions/tagged/payum)
* [Issue Tracker](https://github.com/Payum/Offline/issues)
* [Issue Tracker](https://github.com/Payum/Payum/issues)
* [Twitter](https://twitter.com/payumphp)

## Contributing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Upgrades

See https://github.com/Payum/Payum/blob/master/UPGRADE.md
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@
],
"require": {
"php": ">=5.3.2",
"payum/payum": "0.7.*@dev"
"payum/core": "0.7.*@dev"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
@@ -34,10 +34,9 @@
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"Payum": "src/"
}
"psr-0": { "Payum\\Offline": "" }
},
"target-dir": "Payum/Offline",
"extra": {
"branch-alias": {
"dev-master": "0.7-dev"
12 changes: 8 additions & 4 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -9,17 +9,21 @@
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php"
bootstrap="Tests/bootstrap.php"
>
<testsuites>
<testsuite name="Payum Offline">
<directory>./tests</directory>
<testsuite name="Payum Offline Component Test Suite">
<directory>./Tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>

0 comments on commit 86cd591

Please sign in to comment.