-
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.
REFACTOR Linkable and oEmbed support (#153)
* REFACTOR Linkable and oEmbed support * UPDATE fixture SlideImage slide 3 SlideType * UPDATE .travis.yml PHP configuration
- Loading branch information
Showing
9 changed files
with
255 additions
and
81 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
Empty file.
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,49 +1,50 @@ | ||
{ | ||
"name": "dynamic/flexslider", | ||
"description": "Display a FlexSlider on pages of your website", | ||
"authors": [ | ||
{ | ||
"name": "Dynamic", | ||
"homepage": "http://www.dynamicagency.com", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"silverstripe", | ||
"flexslider", | ||
"module", | ||
"slideshow", | ||
"slider", | ||
"jquery" | ||
], | ||
"license": "BSD-3-Clause", | ||
"type": "silverstripe-vendormodule", | ||
"require": { | ||
"silverstripe/recipe-cms": "^1.0 || ^4.0", | ||
"silverstripe/asset-admin": "^1.0", | ||
"silverstripe/vendor-plugin": "^1.0", | ||
"symbiote/silverstripe-gridfieldextensions": "^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/PHPUnit": "^5.7", | ||
"squizlabs/php_codesniffer": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Dynamic\\FlexSlider\\": "src/", | ||
"Dynamic\\FlexSlider\\Test\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"extra": { | ||
"expose": [ | ||
"css", | ||
"images", | ||
"thirdparty" | ||
], | ||
"branch-alias": { | ||
"dev-master": "4.0.x-dev" | ||
} | ||
} | ||
"name": "dynamic/flexslider", | ||
"description": "Display a FlexSlider on pages of your website", | ||
"authors": [ | ||
{ | ||
"name": "Dynamic", | ||
"homepage": "http://www.dynamicagency.com", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"silverstripe", | ||
"flexslider", | ||
"module", | ||
"slideshow", | ||
"slider", | ||
"jquery" | ||
], | ||
"license": "BSD-3-Clause", | ||
"type": "silverstripe-vendormodule", | ||
"require": { | ||
"silverstripe/recipe-cms": "^1.0 || ^4.0", | ||
"silverstripe/asset-admin": "^1.0", | ||
"silverstripe/vendor-plugin": "^1.0", | ||
"sheadawson/silverstripe-linkable": "^2.0", | ||
"symbiote/silverstripe-gridfieldextensions": "^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/PHPUnit": "^5.7", | ||
"squizlabs/php_codesniffer": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Dynamic\\FlexSlider\\": "src/", | ||
"Dynamic\\FlexSlider\\Test\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"extra": { | ||
"expose": [ | ||
"css", | ||
"images", | ||
"thirdparty" | ||
], | ||
"branch-alias": { | ||
"dev-master": "4.0.x-dev" | ||
} | ||
} | ||
} |
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
File renamed without changes.
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
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
Oops, something went wrong.