Skip to content

Commit

Permalink
Tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
olvlvl committed Nov 6, 2016
1 parent 1896a7e commit 7a3d8bf
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -15,8 +15,8 @@ php:
- hhvm

before_script:
- if [[ $TRAVIS_PHP_VERSION != "5.5" ]]; then COMPOSER_ROOT_VERSION=2.3 composer install --prefer-dist; fi
- if [[ $TRAVIS_PHP_VERSION = "5.5" ]]; then COMPOSER_ROOT_VERSION=2.3 composer require satooshi/php-coveralls --prefer-dist; fi
- if [[ $TRAVIS_PHP_VERSION != "5.5" ]]; then COMPOSER_ROOT_VERSION=2.3.0 composer install --prefer-dist; fi
- if [[ $TRAVIS_PHP_VERSION = "5.5" ]]; then COMPOSER_ROOT_VERSION=2.3.0 composer require satooshi/php-coveralls --prefer-dist; fi

script:
- mkdir -p build/logs
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,7 +1,7 @@
The icanboogie/bind-prototype package is free software.
It is released under the terms of the following BSD License.

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

Redistribution and use in source and binary forms, with or without modification,
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -9,10 +9,10 @@ usage:
@echo "test: Runs the test suite.\ndoc: Creates the documentation.\nclean: Removes the documentation, the dependencies and the Composer files."

vendor:
@COMPOSER_ROOT_VERSION=$(PACKAGE_VERSION) composer install
@COMPOSER_ROOT_VERSION=$(PACKAGE_VERSION) composer install --prefer-dist

update:
@COMPOSER_ROOT_VERSION=$(PACKAGE_VERSION) composer update
@COMPOSER_ROOT_VERSION=$(PACKAGE_VERSION) composer update --prefer-dist

autoload: vendor
@composer dump-autoload
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Expand Up @@ -19,6 +19,7 @@
},

"minimum-stability": "dev",
"prefer-stable": true,

"require": {
"php": ">=5.5.0",
Expand All @@ -32,15 +33,15 @@
}
},

"scripts": {
"post-autoload-dump": "ICanBoogie\\Autoconfig\\Hooks::on_autoload_dump"
},

"extra": {
"icanboogie": {
"config-constructor": {
"prototype": "ICanBoogie\\Binding\\Prototype\\Hooks::synthesize_config"
}
}
},

"scripts": {
"post-autoload-dump": "ICanBoogie\\Autoconfig\\Hooks::on_autoload_dump"
}
}

0 comments on commit 7a3d8bf

Please sign in to comment.