Skip to content

Commit

Permalink
Merge pull request #7 from viharm/release_v2.4.0
Browse files Browse the repository at this point in the history
Release v2.4.0
  • Loading branch information
viharm authored Sep 26, 2018
2 parents 12f6c1c + 48c1487 commit 14bce18
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Lib/phpKhelper
Submodule phpKhelper updated from 6f119a to 92aea8
52 changes: 51 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

| | |
|:----------|:------------------------------------------------|
| Version | 02.03.00 |
| Version | 2.4.0 |
| Changes | https://github.com/viharm/phpAria2rpc/pull/7 |
| Download | https://github.com/viharm/phpAria2rpc/releases |
| Issues | https://github.com/viharm/phpAria2rpc/issues |
| License | Modified BSD (3-clause) |
Expand Down Expand Up @@ -30,6 +31,36 @@ Based on *[shiny](https://github.com/shiny)*'s *[php-aria2](https://github.com/s

Get the release archives from [downloads](https://github.com/viharm/phpAria2rpc/releases)

### Composer

From v2.4.0 onwards, *phpAria2rpc* is enabled for *Composer*, and is available on *Packagist* as `viharm`/`php-aria2-rpc`. This library can be installed standalone or included in any project with *Composer* usage.


#### Standalone

A standalone copy of this project can be installed with *Composer*

```
php compser.phar create-project viharm/php-aria2-rpc phpAria2rpc
```

The above command will install *phpAria2rpc* in a sub-directory `phpAria2rpc` of the current working directory.


#### Dependency

To make *Composer* automatically install *phpAria2rpc* as a dependency include the following in your `composer.json`

```json
{
"require": {
"viharm/php-aria2-rpc": "^2.4.0"
}
}
```

This will install *phpAria2rpc* in the standard `vendor` sub-directory of a typical *Composer*-enabled project.


#### Clone

Expand Down Expand Up @@ -592,13 +623,32 @@ Copyright (c) 2013 Rokas Å leinius (raveren at gmail dot com)
Copyright (c) Codiad & Kent Safranski (codiad.com)


#### CodeGit

*CodeGit* *Git* plugin for *Codiad* (https://github.com/Andr3as/Codiad-CodeGit), used under a MIT-style license.

Copyright (c) Andr3as <andranode@gmail.com>


#### VS Code

*Visual Studio Code* code editor, used under the *Microsoft Software License*.


#### jEdit

*jEdit* text editor (http://www.jedit.org/), used under the GNU GPL v2.

Copyright (C) jEdit authors.


#### Ungit

*Ungit* client for *Git* (https://github.com/FredrikNoren/ungit) used under the MIT license

Copyright (C) Fredrik Norén


### GitHub

Hosted by *GitHub* code repository (github.com).
Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
02.03.00
(2016-11-19)
2.4.0
(2018-09-26)
32 changes: 32 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "viharm/php-aria2-rpc",
"type": "library",
"description": "A PHP library to interact with Aria2 download manager via the Aria2 RPC interface",
"keywords": ["aria2","php","rpc"],
"homepage": "https://github.com/viharm/phpAria2rpc",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Viharm",
"email": "viharm@malviya.net",
"homepage": "http://viharm.malviya.net",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/viharm/phpAria2rpc/issues"
},
"require": {
"php": ">=5.4.0",
"mnsami/composer-custom-directory-installer": "1.1.*",
"viharm/php-khelper": "^1.4.1"
},
"config": {
"vendor-dir": "Lib"
},
"extra": {
"installer-paths": {
"./Lib/phpKhelper": ["viharm/php-khelper"]
}
}
}

0 comments on commit 14bce18

Please sign in to comment.