silverstripe-webpack/composer.json

122 lines
3.4 KiB
JSON
Raw Permalink Normal View History

2018-02-05 12:11:01 +01:00
{
2024-04-22 13:30:37 +02:00
"name": "a2nt/silverstripe-webpack",
"type": "silverstripe-recipe",
"description": "SilverStripe WebPack boilerplate + Basics of JS/CSS UI",
"keywords": [
"silverstripe",
"webpack"
],
"license": "BSD-3-Clause",
"require": {
"php": ">=8",
"ext-json": "*",
2024-04-22 13:47:30 +02:00
"silverstripe/recipe-cms": "^5",
2024-04-22 13:30:37 +02:00
"silverstripe/recipe-plugin": "*",
"wilr/silverstripe-googlesitemaps": "*",
"silverstripe/userforms": "*",
"undefinedoffset/sortablegridfield": "*",
"silverstripe/spamprotection": "*",
"jonom/silverstripe-betternavigator": "*",
"silverstripe/externallinks": "*",
"symbiote/silverstripe-gridfieldextensions": "*",
2024-04-22 14:14:31 +02:00
"colymba/gridfield-bulk-editing-tools": "^4",
2024-04-22 13:30:37 +02:00
"dnadesign/silverstripe-elemental-list": "*",
"dnadesign/silverstripe-elemental-virtual": "*",
"dnadesign/silverstripe-elemental-userforms": "*",
"axllent/silverstripe-version-truncator": "*",
"axllent/silverstripe-bootstrap-forms": "*",
"silverstripe/redirectedurls": "*",
"stevie-mayhew/silverstripe-svg": "*",
"innoweb/silverstripe-sitemap": "*",
"silverstripe/multiuser-editing-alert": "*",
"silverstripe/environmentcheck": "*",
"a2nt/silverstripe-font-awesome-field": "dev-master",
"a2nt/silverstripe-progressivewebapp": "dev-master",
"bummzack/sortablefile": "*",
"ezyang/htmlpurifier": "^4.13",
"endroid/qr-code": "^3.9",
"jonom/focuspoint": "*",
"silverstripe/login-forms": "*",
2024-04-22 13:47:30 +02:00
"axllent/silverstripe-trailing-slash": "*",
2024-04-22 14:14:31 +02:00
"webbuilders-group/silverstripe-turnstile": "*",
2024-04-22 16:06:45 +02:00
"a2nt/cms-niceties": "*",
2024-04-22 16:08:21 +02:00
"dynamic/flexslider": "^5",
2024-04-23 20:10:06 +02:00
"dynamic/silverstripe-elemental-flexslider": "^2.0@dev",
"silverstripe/blog": "^4.2"
2024-04-22 13:30:37 +02:00
},
"require-dev": {
"phpunit/phpunit": "*",
"sunnysideup/easy-coding-standards": "dev-master",
"silverleague/ideannotator": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/a2nt/silverstripe-elemental-archive-report"
2020-07-26 13:28:54 +02:00
},
2024-04-22 13:30:37 +02:00
{
"type": "vcs",
"url": "https://github.com/a2nt/silverstripe-font-awesome"
2020-07-26 13:28:54 +02:00
},
2024-04-22 13:30:37 +02:00
{
"type": "vcs",
"url": "https://github.com/a2nt/silverstripe-mapboxfield"
},
{
"type": "vcs",
"url": "https://github.com/a2nt/silverstripe-addressable"
2020-07-26 13:28:54 +02:00
},
2024-04-22 13:30:37 +02:00
{
"type": "vcs",
"url": "https://github.com/a2nt/silverstripe-image-cropper-field"
2020-07-26 13:28:54 +02:00
},
2024-04-22 13:30:37 +02:00
{
"type": "vcs",
"url": "https://github.com/a2nt/silverstripe-dataintegritytests"
2024-04-22 16:06:45 +02:00
},
{
"type": "vcs",
"url": "https://github.com/a2nt/silverstripe-flexslider"
2024-04-22 13:30:37 +02:00
}
],
"extra": {
"expose": [
"app/client/dist"
],
"project-files-installed": [
"app/.htaccess",
"app/_config.php",
"app/_config/database.yml",
"app/_config/mimevalidator.yml",
"app/_config/mysite.yml",
"app/src/Page.php",
"app/src/PageController.php"
],
"public-files-installed": [
".htaccess",
"index.php",
"install-frameworkmissing.html",
"install.php",
"web.config"
]
},
"config": {
"process-timeout": 600,
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true
}
},
"autoload": {
"psr-4": {
"App\\": "app/src"
2022-07-03 15:19:00 +02:00
},
2024-04-22 13:30:37 +02:00
"exclude-from-classmap": [
"vendor/dynamic/flexslider/src/Model/SlideImage.php"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
2024-04-22 14:14:31 +02:00
}