Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
Fix composer-plugin-api version.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidePastore committed Jun 13, 2015
1 parent 61df1c0 commit 07946a1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ A composer plugin that checks if your application uses dependencies with known s
## Installation
Using the `composer` command:

$ composer require davidepastore/composer-audit:0.1.0
$ composer require davidepastore/composer-audit:0.1.*

Manually adding in composer.json:

```json
"require": {
"davidepastore/composer-audit": "0.1.0"
"davidepastore/composer-audit": "0.1.*"
}
```

Expand Down
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"name": "davidepastore/composer-audit",
"name": "davidepastore/composer-audit",
"description": "Composer plugin to check your composer.lock",
"keywords": [
"composer",
"plugin",
"security-checker"
],
"type": "composer-plugin",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Davide Pastore",
"email": "pasdavide@gmail.com"
}
],
"authors": [
{
"name": "Davide Pastore",
"email": "pasdavide@gmail.com"
}
],
"autoload" : {
"psr-4" : {
"" : "src/"
}
},
"require": {
"composer-plugin-api": "1.0.0",
"require": {
"composer-plugin-api": "^1.0",
"sensiolabs/security-checker": "2.*"
},
},
"extra": {
"class": "\\DavidePastore\\ComposerAudit\\ComposerAudit"
}
Expand Down

0 comments on commit 07946a1

Please sign in to comment.