Skip to content

Commit 0c4c5a9

Browse files
committed
Updating project
1 parent e762703 commit 0c4c5a9

File tree

10 files changed

+24
-21
lines changed

10 files changed

+24
-21
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ before_install:
99

1010
before_script:
1111
- sudo apt-get install graphviz
12-
- composer update --dev
13-
- pyrus install -f pear/PHP_CodeSniffer-1.5.2
14-
- git clone https://github.com/joomla/coding-standards.git `pyrus get php_dir | tail -1`/PHP/CodeSniffer/Standards/Joomla
12+
- sudo apt-get install php5-xdebug
13+
- composer update
14+
- pear install PHP_CodeSniffer-1.5.6
15+
- git clone https://github.com/joomla/coding-standards.git `pear config-get php_dir`/PHP/CodeSniffer/Standards/Joomla
1516
- phpenv rehash
1617

1718
script:
@@ -27,4 +28,4 @@ after_success:
2728

2829
env:
2930
global:
30-
- secure: "RT1zLx1CASx0obYvrmwwMc4Ro3aJx5FjB/X4pH04YQQDMjXgLG+Yu/yCZHd1v+TUJzRUstxNJdOJyIMu0inKwdLxbUayz0hy6nWGDeYTddu8bDHBa7RRgOJe6io+oFkjq196kjFPkfvvWz8QSqylbey3VJq0Eiv5n/ZG892vTa0="
31+
- secure: "dYLK4jNa/gAUiVTwxBE0wPVRK6EP1YgGRSOR9J/6r42vGgj6PniQpx6doOGdbagBZDa5pdiOSvJ33ZAThuvOVZZBoPdrHmqzioxYlfv6dCOi/Ytj2Lb9nyw+alc5yBHtlGBH7UDrn4dT7zkDssd5M4S/8s1JmqAb0Z1p1/qpV/o="

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
PHP BitArray
22
======================
3-
[![Downloads](https://poser.pugx.org/chdemko/bitarray/d/total.png)](https://packagist.org/packages/chdemko/bitarray)
4-
[![Latest Stable Version](https://poser.pugx.org/chdemko/bitarray/version.png)](https://packagist.org/packages/chdemko/bitarray)
5-
[![Latest Unstable Version](https://poser.pugx.org/chdemko/bitarray/v/unstable.png)](https://packagist.org/packages/chdemko/bitarray)
6-
[![Code coverage](https://coveralls.io/repos/chdemko/php-bitarray/badge.png?branch=master)](https://coveralls.io/r/chdemko/php-bitarray?branch=master)
7-
[![Build Status](https://secure.travis-ci.org/chdemko/php-bitarray.png)](http://travis-ci.org/chdemko/php-bitarray)
8-
[![License](https://poser.pugx.org/chdemko/bitarray/license.png)](http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html)
3+
[![Travis](https://img.shields.io/travis/chdemko/php-bitarray.svg)](http://travis-ci.org/chdemko/php-bitarray)
4+
[![Coveralls](https://img.shields.io/coveralls/chdemko/php-bitarray.svg)](https://coveralls.io/r/chdemko/php-bitarray?branch=master)
5+
[![Scrutinizer](https://img.shields.io/scrutinizer/g/chdemko/php-bitarray.svg)](https://scrutinizer-ci.com/g/chdemko/php-bitarray/?branch=master)
6+
[![Dependency Status](https://www.versioneye.com/package/php--chdemko--bitarray/badge.svg)](https://www.versioneye.com/package/php--chdemko--bitarray)
7+
[![Latest Stable Version](https://img.shields.io/packagist/v/chdemko/bitarray.svg)](https://packagist.org/packages/chdemko/bitarray)
8+
[![Packagist](https://img.shields.io/packagist/dt/chdemko/bitarray.svg)](https://packagist.org/packages/chdemko/bitarray)
9+
[![Latest Unstable Version](https://poser.pugx.org/chdemko/bitarray/v/unstable.svg)](https://packagist.org/packages/chdemko/bitarray)
10+
[![License](https://poser.pugx.org/chdemko/bitarray/license.svg)](https://packagist.org/packages/chdemko/bitarray)
911

1012
BitArray for PHP.
1113

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chdemko/bitarray",
33
"type": "library",
4-
"description": "BitArray for PHP >= 5.4",
4+
"description": "BitArray for PHP >= 5.5",
55
"keywords": ["bits","array","iterator"],
66
"homepage": "http://github.com/chdemko/php-bitarray",
77
"license": "CECILL-B",
@@ -14,10 +14,10 @@
1414
}
1515
],
1616
"require": {
17-
"php": ">=5.4.0"
17+
"php": ">=5.5.0"
1818
},
1919
"require-dev": {
20-
"phpdocumentor/phpdocumentor": "2.5.*@dev",
20+
"phpdocumentor/phpdocumentor": "2.9.*@dev",
2121
"satooshi/php-coveralls": "dev-master"
2222
},
2323
"autoload": {

examples/BitArray.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @package BitArray
77
*
88
* @author Christophe Demko <[email protected]>
9-
* @copyright Copyright (C) 2012-2014 Christophe Demko. All rights reserved.
9+
* @copyright Copyright (C) 2012-2016 Christophe Demko. All rights reserved.
1010
*
1111
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html The CeCILL B license
1212
*

phpdoc.dist.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<visibility></visibility>
1818
</parser>
1919
<files>
20-
<ignore-hidden>on</ignore-hidden>
21-
<ignore-symlinks>on</ignore-symlinks>
20+
<ignore-hidden>true</ignore-hidden>
21+
<ignore-symlinks>true</ignore-symlinks>
2222
<directory>src</directory>
2323
</files>
2424
<transformer>

src/BitArray/BitArray.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* chdemko\BitArray\BitArray class
55
*
66
* @author Christophe Demko <[email protected]>
7-
* @copyright Copyright (C) 2014 Christophe Demko. All rights reserved.
7+
* @copyright Copyright (C) 2012-2016 Christophe Demko. All rights reserved.
88
*
99
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html The CeCILL B license
1010
*

src/BitArray/Iterator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* chdemko\BitArray\Iterator class
55
*
66
* @author Christophe Demko <[email protected]>
7-
* @copyright Copyright (C) 2014 Christophe Demko. All rights reserved.
7+
* @copyright Copyright (C) 2012-2016 Christophe Demko. All rights reserved.
88
*
99
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html The CeCILL B license
1010
*

tests/BitArray/BitArrayTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* chdemko\BitArray\BitArrayTest class
55
*
66
* @author Christophe Demko <[email protected]>
7-
* @copyright Copyright (C) 2014 Christophe Demko. All rights reserved.
7+
* @copyright Copyright (C) 2012-2016 Christophe Demko. All rights reserved.
88
*
99
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html The CeCILL B license
1010
*

tests/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @package BitArray
77
*
88
* @author Christophe Demko <[email protected]>
9-
* @copyright Copyright (C) 2014 Christophe Demko. All rights reserved.
9+
* @copyright Copyright (C) 2012-2016 Christophe Demko. All rights reserved.
1010
*
1111
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html The CeCILL B license
1212
*

utility/initiate-publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
if [ "$TRAVIS_REPO_SLUG" == "chdemko/php-bitarray" ] && [ "$TRAVIS_PHP_VERSION" == "5.4" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
3+
if [ "$TRAVIS_REPO_SLUG" == "chdemko/php-bitarray" ] && [ "$TRAVIS_PHP_VERSION" == "5.5" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
44

55
echo -e "Publishing code coverage to coveralls.io ...\n"
66

0 commit comments

Comments
 (0)