Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,16 @@ node_modules
# test
oc-includes/osclass/t/config.php
oc-includes/simpletest/test/osclass/custom_config.php


# Created by https://www.gitignore.io/api/composer

### Composer ###
composer.phar
/vendor/

# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock

# End of https://www.gitignore.io/api/composer
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: php
php:
- '5.6'
- '7.0'
- '7.1'
install: composer install
script: vendor/bin/phpunit
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

{
"name": "osclass/Osclass",
"description": "Osclass is your one-stop shop to building your own classifieds marketplace",
"license": "Apache-2.0",
"type": "project",
"authors": [
{
"name": "Christopher Silva",
"email": "[email protected]"
},
{
"name": "Blackleg",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^5.7"
}
}
Loading