Skip to content

Commit 6129d93

Browse files
author
Stefan Chiriac
committed
update readme and composer.json
1 parent b8e431b commit 6129d93

File tree

5 files changed

+51
-217
lines changed

5 files changed

+51
-217
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ php:
44
- 5.5
55
- 5.4
66
- 5.6
7+
- 7.0
78

89
matrix:
910
fast_finish: true
@@ -15,7 +16,7 @@ before_script:
1516
- composer install --dev --prefer-source
1617
- phpenv rehash
1718

18-
script: vendor/bin/kahlan
19+
script: vendor/kahlan/kahlan/bin/kahlan
1920

2021
after_success:
2122
- "if [ $(phpenv version-name) = '5.6' ]; then curl -F '[email protected]' https://coveralls.io/api/v1/jobs --verbose; fi"

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
# About
99
This is a [Phalcon Framework](http://phalconphp.com/) adapter for [DataTables](http://www.datatables.net/).
10+
This version contains community fixes and multi model search support
1011
# Support
1112
### Currently supported
1213
* QueryBuilder interface
@@ -26,7 +27,7 @@ This is a [Phalcon Framework](http://phalconphp.com/) adapter for [DataTables](h
2627
```json
2728
{
2829
"require": {
29-
"m1ome/phalcon-datatables": "1.*"
30+
"magnxpyr/phalcon-datatables": "1.*"
3031
}
3132
}
3233
```

composer.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "m1ome/phalcon-datatables",
2+
"name": "magnxpyr/phalcon-datatables",
33
"description": "DataTables adapter for Phalcon Framework",
44
"keywords": ["Phalcon", "DataTables", "Plugin"],
55
"license": "MIT",
@@ -12,6 +12,10 @@
1212
{
1313
"name": "Pavel Makarenko",
1414
"email": "[email protected]"
15+
},
16+
{
17+
"name": "Stefan Chiriac",
18+
"email": "[email protected]"
1519
}
1620
],
1721
"minimum-stability": "dev",
@@ -24,7 +28,7 @@
2428
}
2529
},
2630
"require-dev": {
27-
"crysalead/kahlan": "~1.1",
28-
"fzaninotto/faker": "1.5.*@dev"
31+
"fzaninotto/faker": "1.5.*@dev",
32+
"kahlan/kahlan": "^3.0"
2933
}
3034
}

composer.lock

Lines changed: 36 additions & 208 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kahlan-config.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
2-
use filter\Filter;
3-
use kahlan\reporter\coverage\exporter\Coveralls;
2+
use Kahlan\Filter\Filter;
3+
use Kahlan\Reporter\Coverage\Exporter\Coveralls;
44

5-
$args = $this->args();
6-
$args->argument('coverage', 'default', 3);
5+
$args = $this->commandLine();
6+
$args->option('coverage', 'default', 3);
77

88
Filter::register('phalcon.namespace', function($chain) {
99
$this->_autoloader->addPsr4('Spec\\Models\\', __DIR__ . '/spec/models/');

0 commit comments

Comments
 (0)