Skip to content

Commit 7c646d8

Browse files
committed
Adds composer support
1 parent bbc80e7 commit 7c646d8

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@ See what packages have changed after you run `composer update` by comparing comp
66
Requires:
77
- php >= 5.3
88

9-
There are no other dependencies. Just copy the file to `/usr/local/bin`.
9+
There are no other dependencies.
10+
11+
Install
12+
-------
13+
14+
```bash
15+
composer global require davidrjonas/composer-lock-diff:^1.0@dev
16+
```
17+
18+
Or just copy the 'composer-lock-diff' to `/usr/local/bin`.
1019

1120
Usage
1221
=====

composer.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "davidrjonas/composer-lock-diff",
3+
"description": "See what has changed after a composer update.",
4+
"authors": [{
5+
"name": "David Jonas",
6+
"homepage": "https://github.com/davidrjonas"
7+
}],
8+
"type": "library",
9+
"license": "MIT",
10+
"require": {},
11+
"bin": ["composer-lock-diff"],
12+
"extra": { "branch-alias": { "dev-master": "1.0.x-dev" }}
13+
}

0 commit comments

Comments
 (0)