Skip to content

Commit

Permalink
Merge pull request #3 from bluetree-service/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
chajr committed Jul 16, 2017
2 parents 7584bb8 + b527de7 commit 5b64de9
Show file tree
Hide file tree
Showing 24 changed files with 3,518 additions and 265 deletions.
15 changes: 15 additions & 0 deletions .codeclimate.yml
@@ -0,0 +1,15 @@
engines:
duplication:
enabled: true
config:
languages:
- php
fixme:
enabled: true
phpmd:
enabled: true
ratings:
paths:
- "src/*"
exclude_paths:
- "tests/*"
3 changes: 1 addition & 2 deletions .gitignore
@@ -1,3 +1,2 @@
.idea
vendor
composer.lock
tmp
4 changes: 0 additions & 4 deletions .travis.yml
@@ -1,13 +1,9 @@
language: php
php:
- "5.6"
- "5.5"
- "5.4"
- "7.0"
matrix:
fast_finish: true
allow_failures:
- php: "7.0"
install:
- composer install
script:
Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG.md

This file was deleted.

15 changes: 11 additions & 4 deletions README.md
Expand Up @@ -5,8 +5,10 @@ Bluetree Service Data
[![Latest Stable Version](https://poser.pugx.org/bluetree-service/data/v/stable.svg)](https://packagist.org/packages/bluetree-service/data)
[![Total Downloads](https://poser.pugx.org/bluetree-service/data/downloads.svg)](https://packagist.org/packages/bluetree-service/data)
[![License](https://poser.pugx.org/bluetree-service/data/license.svg)](https://packagist.org/packages/bluetree-service/data)
[![Documentation Status](https://readthedocs.org/projects/class-kernel/badge/?version=latest)](https://readthedocs.org/projects/class-kernel/?badge=latest)
[![Coverage Status](https://coveralls.io/repos/bluetree-service/data/badge.svg)](https://coveralls.io/r/bluetree-service/data)
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/907839d1-2836-4a0d-a205-8c953e79268a/mini.png)](https://insight.sensiolabs.com/projects/907839d1-2836-4a0d-a205-8c953e79268a)
[![Code Climate](https://codeclimate.com/github/bluetree-service/data/badges/gpa.svg)](https://codeclimate.com/github/bluetree-service/data)


Main files for all class libraries. Include classes to use BlueObject as trait and
independent Object with xml data handling. Also allow to use Register to create
Expand All @@ -15,10 +17,14 @@ also can be used independent.

### Included libraries
* **BlueData\Data\Xml** - extends DOMDocument to handle xml data
* **BlueData\Calculation\Math** - Store some mathematics calculations as static methods
* **BlueData\Check\Validator** - Store some validations as static methods

Documentation
--------------
* [BlueData\Data\Xml](https://github.com/bluetree-service/data/wiki/BlueData_Data_Xml "Xml")
* [BlueData\Data\Xml](https://github.com/bluetree-service/data/blob/develop/doc/Xml.md "Xml")
* [BlueData\Calculation\Math](https://github.com/bluetree-service/data/blob/develop/doc/Math.md "Math")
* [BlueData\Check\Validator](https://github.com/bluetree-service/data/blob/develop/doc/Validator.md "Validator")

Install via Composer
--------------
Expand All @@ -45,13 +51,14 @@ Project description

### Requirements

* PHP 5.4 or higher
* PHP 5.6 or higher
* DOM extension enabled
* Multibyte String extension enabled

Change log
--------------
All release version changes:
[Change log](https://github.com/bluetree-service/data/wiki/Change-log "Change log")
[Change log](https://github.com/bluetree-service/data/blob/develop/doc/changelog.md "Change log")

License
--------------
Expand Down
13 changes: 10 additions & 3 deletions composer.json
Expand Up @@ -5,7 +5,6 @@
"description": "Data storage and manipolation by container object",
"keywords": ["xml", "data", "bluetree", "bluetree-service"],
"homepage": "https://github.com/bluetree-service/data",
"version": "0.1.0.0",
"authors": [
{
"name": "Michał Adamiak",
Expand All @@ -15,12 +14,20 @@
}
],
"require": {
"php": ">=5.4.0",
"satooshi/php-coveralls": "0.6.*"
"php": ">=5.5.0"
},
"require-dev": {
"satooshi/php-coveralls": "1.0.*",
"phpunit/phpunit": "4.8.35"
},
"autoload": {
"psr-4": {
"BlueData\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
}
}

0 comments on commit 5b64de9

Please sign in to comment.