-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from spekulatius/fixing-json
Fixing composer.json
- Loading branch information
Showing
1 changed file
with
29 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
{ | ||
"name" : "spekulatius/silverstripe-composer-security-checker", | ||
"description" : "Task which checks if any composer dependencies has known vulnerabilities.", | ||
"type" : "silverstripe-module", | ||
"license" : "BSD-3-Clause", | ||
"keywords" : ["silverstripe","environment", "composer", "updates", "vulnerabilities", "security"], | ||
"authors" : [ | ||
{ | ||
"name" : "Peter Thaleikis", | ||
"email" : "[email protected]", | ||
"homepage" : "https://github.com/spekulatius" | ||
} | ||
], | ||
"require" : { | ||
"silverstripe/framework": "3.*", | ||
"sensiolabs/security-checker": "*@stable" | ||
}, | ||
"suggest": { | ||
"friendsofsilverstripe/silverstripe-maintenance": "Modeladmin for SilverStripe security checker", | ||
"silverstripe/queuedjobs": "Allows to run security checker as queuedjob", | ||
"roave/security-advisories": "Raises a conflict on attempt to install a vulnerable module" | ||
} | ||
} | ||
"name": "spekulatius/silverstripe-composer-security-checker", | ||
"description": "Task which checks if any composer dependencies has known vulnerabilities.", | ||
"type": "silverstripe-module", | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"silverstripe", | ||
"environment", | ||
"composer", | ||
"updates", | ||
"vulnerabilities", | ||
"security" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Peter Thaleikis", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/spekulatius" | ||
} | ||
], | ||
"require": { | ||
"silverstripe/framework": "3.*", | ||
"sensiolabs/security-checker": "*@stable" | ||
}, | ||
"suggest": { | ||
"friendsofsilverstripe/silverstripe-maintenance": "Modeladmin for SilverStripe security checker", | ||
"silverstripe/queuedjobs": "Allows to run security checker as queuedjob", | ||
"roave/security-advisories": "Raises a conflict on attempt to install a vulnerable module" | ||
} | ||
} |