Skip to content

Commit

Permalink
Bump v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olvlvl committed Feb 17, 2017
1 parent 041a6cf commit 28fd3f1
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 34 deletions.
4 changes: 2 additions & 2 deletions .gitattributes
@@ -1,6 +1,6 @@
.gitattributes export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
Makefile export-ignore
phpunit.xml.dist export-ignore
/tests export-ignore
tests/ export-ignore
6 changes: 3 additions & 3 deletions .gitignore
@@ -1,4 +1,4 @@
composer.lock
build
tests/cache/
vendor/
composer.lock
tests/cache
vendor
14 changes: 10 additions & 4 deletions .travis.yml
@@ -1,24 +1,30 @@
sudo: false

cache:
directories:
- $COMPOSER_CACHE_DIR
- $HOME/.composer/cache

language: php

php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm

matrix:
allow_failures:
- php: hhvm

before_script:
- travis_retry composer self-update
- composer require satooshi/php-coveralls --prefer-source
- if [[ $TRAVIS_PHP_VERSION != "5.5" ]]; then composer install; fi
- if [[ $TRAVIS_PHP_VERSION = "5.5" ]]; then composer require satooshi/php-coveralls; fi

script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml

after_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" = "5.6" ]; then php vendor/bin/coveralls -v; fi;'
after_success:
- if [[ "$TRAVIS_PHP_VERSION" = "5.5" ]]; then php vendor/bin/coveralls -v; fi
4 changes: 2 additions & 2 deletions LICENSE
@@ -1,7 +1,7 @@
The ICanBoogie/Config package is free software.
The icanboogie/config package is free software.
It is released under the terms of the following BSD License.

Copyright (c) 2015 by Olivier Laviale
Copyright (c) 2015-2017 by Olivier Laviale
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
2 changes: 1 addition & 1 deletion Makefile
@@ -1,7 +1,7 @@
# customization

PACKAGE_NAME = icanboogie/config
PACKAGE_VERSION = 1.1.0
PACKAGE_VERSION = 1.2

# do not edit the following lines

Expand Down
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -186,8 +186,8 @@ cloned with the following command line:

## Documentation

The package is documented as part of the [ICanBoogie](http://icanboogie.org/) framework
[documentation](http://icanboogie.org/docs/). You can generate the documentation for the package
The package is documented as part of the [ICanBoogie](https://icanboogie.org/) framework
[documentation](https://icanboogie.org/docs/). You can generate the documentation for the package
and its dependencies with the `make doc` command. The documentation is generated in the `docs`
directory. [ApiGen](http://apigen.org/) is required. You can later clean the directory with
the `make clean` command.
Expand Down Expand Up @@ -219,9 +219,9 @@ The package is continuously tested by [Travis CI](http://about.travis-ci.org/).



[icanboogie/event]: https://github.com/ICanBoogie/Event
[ICanBoogie]: https://github.com/ICanBoogie
[icanboogie/event]: https://github.com/ICanBoogie/Event
[ICanBoogie]: https://github.com/ICanBoogie

[Config]: https://icanboogie.org/api/config/1.1/class-ICanBoogie.Config.html
[Config]: https://icanboogie.org/api/config/1.2/class-ICanBoogie.Config.html
[NoFragmentDefined]: https://icanboogie.org/api/config/1.2/class-ICanBoogie.NoFragmentDefined.html
[Storage]: https://icanboogie.org/api/storage/2.0/class-ICanBoogie.Storage.Storage.html
[NoFragmentDefined]: https://icanboogie.org/api/config/master/class-ICanBoogie.NoFragmentDefined.html
16 changes: 9 additions & 7 deletions composer.json
Expand Up @@ -2,15 +2,17 @@
"name": "icanboogie/config",
"type": "library",
"description": "Synthesizes low-level configurations.",
"keywords": [ "config" ],
"homepage": "http://icanboogie.org/",
"keywords": [
"config"
],
"homepage": "https://icanboogie.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Olivier Laviale",
"email": "olivier.laviale@gmail.com",
"homepage": "http://www.weirdog.com/",
"role" : "Developer"
"homepage": "https://olvlvl.com/",
"role": "Developer"
}
],
"support": {
Expand All @@ -19,9 +21,9 @@
},
"minimum-stability": "dev",
"require": {
"php": ">=5.5.0",
"icanboogie/common": "^1.2.2",
"icanboogie/storage": "^2.0.0"
"php": ">=5.5",
"icanboogie/common": "^1.2",
"icanboogie/storage": "^2.0"
},
"autoload": {
"psr-4": {
Expand Down
18 changes: 9 additions & 9 deletions phpunit.xml.dist → phpunit.xml
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./tests/bootstrap.php"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./tests/bootstrap.php"
>
<testsuites>
<testsuite name="icanboogie/config">
Expand Down

0 comments on commit 28fd3f1

Please sign in to comment.