-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to silverstripe-vendormodule type
- Loading branch information
Dylan Wagstaff
committed
Nov 22, 2017
1 parent
3c9e89f
commit e394d90
Showing
1 changed file
with
28 additions
and
26 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,33 +1,35 @@ | ||
{ | ||
"name": "silverstripe/iframe", | ||
"description": "Add an iFrame pagetype to SilverStripe, to show content from another website", | ||
"type": "silverstripe-module", | ||
"keywords": ["silverstripe"], | ||
"license": "BSD-3-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Mateusz Uzdowski", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"silverstripe/framework": "^4@dev", | ||
"silverstripe/cms": "^4@dev" | ||
}, | ||
"require-dev": { | ||
"phpunit/PHPUnit": "^5.7" | ||
}, | ||
"autoload": { | ||
"name": "silverstripe/iframe", | ||
"description": "Add an iFrame pagetype to SilverStripe, to show content from another website", | ||
"type": "silverstripe-vendormodule", | ||
"keywords": ["silverstripe"], | ||
"license": "BSD-3-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Mateusz Uzdowski", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"silverstripe/recipe-cms": "^1" | ||
}, | ||
"require-dev": { | ||
"phpunit/PHPUnit": "^5.7" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"SilverStripe\\IFrame\\": "code/", | ||
"SilverStripe\\IFrame\\Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.0.x-dev" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
"extra": { | ||
"expose": [ | ||
"javascript" | ||
], | ||
"branch-alias": { | ||
"dev-master": "2.0.x-dev" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |