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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,9 @@ node_modules
# test
oc-includes/osclass/t/config.php
oc-includes/simpletest/test/osclass/custom_config.php

# vendor
/vendor/*
!/vendor/.keep

robots.txt
56 changes: 56 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"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": "xiris@xiris.com.br"
}
],
"repositories": [
{
"type": "git",
"url": "git@github.com:servicescout/akismet.git"
},
{
"type": "git",
"url": "git@github.com:xiris/osclass-ajaxuploader.git"
}
],
"require": {
"php": ">=5.6.3",
"ext-mbstring": "*",
"ext-gd": "*",
"ext-curl": "*",
"ext-mysqli": "*",
"ext-json": "*",
"ezyang/htmlpurifier": "dev-master",
"smmoosavi/php-gettext": "dev-master",
"pclzip/pclzip": "dev-master",
"phpmailer/phpmailer": "dev-master",
"phpseclib/phpseclib": "2.0.*",
"servicescout/akismet": "0.5.2",
"eddieantonio/bcrypt": "0.3.3",
"google/recaptcha": "1.1.3",
"freefri/recaptcha-php": "0.1.0",
"xiris/osclass-ajaxuploader": "0.1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.2",
"squizlabs/php_codesniffer": "1.5.3",
"phpmd/phpmd": "@stable",
"pdepend/pdepend": "2.4.0"
},
"autoload": {
"psr-0": {
"": "src/"
},
"exclude-from-classmap": [
"**/Test/**"
]
},
"minimum-stability": "alpha",
"prefer-stable": true
}
Loading