Skip to content

Commit

Permalink
Merge pull request #47 from php-http/puli_phar
Browse files Browse the repository at this point in the history
Add puli.phar, remove cli dependency, closes #41
  • Loading branch information
sagikazarmark committed Jan 15, 2016
2 parents 4d0fcc3 + 9ccaca9 commit 9f1f47e
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.puli/
bin/*
!bin/puli.phar
build/
vendor/
composer.lock
Expand Down
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ branches:
- /^analysis-.*$/

matrix:
allow_failures:
- php: hhvm
fast_finish: true
include:
- php: 5.5
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# Change Log


## 0.7.0 - 2016-01-15

### Added

- Temporary puli.phar (Beta 10) executable

### Changed

- Updated HTTPlug dependencies
- Updated Puli dependencies
- Local configuration to make tests passing

### Removed

- Puli CLI dependency


## 0.6.4 - 2016-01-07

### Fixed
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@

**Finds installed HTTPlug implementations and PSR-7 message factories.**

> **Note for 0.7.x releases**
>
> Puli binary is added to this repository until [puli/issues#165](https://github.com/puli/issues/issues/165) is resolved.
>
> However, if you have puli globally installed, it will be used.
> Make sure that your puli binary is at least beta10

## Install

Expand Down
Binary file added bin/puli.phar
Binary file not shown.
18 changes: 11 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
],
"require": {
"php": "^5.4|7.*",
"puli/composer-plugin": "1.0.0-beta9",
"puli/discovery": "1.0.0-beta9",
"puli/cli": "~1.0.0-beta10"
"puli/composer-plugin": "1.0.0-beta9"
},
"require-dev": {
"php-http/httplug": "^1.0",
Expand All @@ -36,14 +34,20 @@
}
},
"scripts": {
"test": "vendor/bin/phpspec run",
"test-ci": "vendor/bin/phpspec run -c phpspec.yml.ci"
"test": "bin/phpspec run",
"test-ci": "bin/phpspec run -c phpspec.yml.ci"
},
"bin": [
"bin/puli.phar"
],
"extra": {
"branch-alias": {
"dev-master": "0.7-dev"
"dev-master": "0.8-dev"
}
},
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"minimum-stability": "dev"
"minimum-stability": "beta"
}

0 comments on commit 9f1f47e

Please sign in to comment.