Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
Merge branch 'release/0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
romaninsh committed Feb 5, 2016
2 parents 0bec9ad + 0e49b3e commit 5d602b9
Show file tree
Hide file tree
Showing 25 changed files with 1,683 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
engines:
duplication:
enabled: true
config:
languages:
- php
fixme:
enabled: true
phpmd:
enabled: true
radon:
enabled: true
ratings:
paths:
- "src/**"
exclude_paths:
- tests/**/*
- vendor/**/*
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
doc/html
doc/doctree
docs/html
docs/doctrees
/vendor
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: php
php:
- '5.5'
- '7.0'

before_script:
- composer install

after_script:
- vendor/bin/test-reporter

notifications:
slack: agiletoolkit:bjrKuPBf1h4cYiNxPBQ1kF6c
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## 0.1.1

* Added first sample Query.php class
* Added first sample TestQuery.php class
* Integrated with Travis for running tests
* Integrated with codeclimate for code analysis and code coverage
* Integrated badges into README
* Integrated http://dsql.readthedocs.org/

## 0.1.0

* Initial Release
* Bootstraped Documentation (sphinx-doc)
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# dsql
Object-Oriented SQL Query Builder

[![Build Status](https://travis-ci.org/atk4/dsql.png?branch=develop)](https://travis-ci.org/atk4/dsql)

[![Code Climate](https://codeclimate.com/github/atk4/dsql/badges/gpa.svg)](https://codeclimate.com/github/atk4/dsql)
[![Test Coverage](https://codeclimate.com/github/atk4/dsql/badges/coverage.svg)](https://codeclimate.com/github/atk4/dsql/coverage)
[![Issue Count](https://codeclimate.com/github/atk4/dsql/badges/issue_count.svg)](https://codeclimate.com/github/atk4/dsql)
25 changes: 25 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "atk4/dsql",
"type": "library",
"description": "Dynamic SQL Builder in PHP",
"keywords": ["framework", "sql", "builder", "orm"],
"homepage": "http://agiletoolkit.org/dsql/",
"license": "MIT",
"authors": [
{
"name": "Romans Malinovskis",
"email": "romans@agiletoolkit.org",
"homepage": "https://nearly.guru/"
}
],
"require": {
"php": ">=5.5.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {"atk4\\dsql\\":"src/"}
}
}

0 comments on commit 5d602b9

Please sign in to comment.