silverstripe-framework/composer.json

120 lines
3.9 KiB
JSON
Raw Normal View History

2012-11-01 17:28:51 +01:00
{
2017-07-03 06:53:53 +02:00
"name": "silverstripe/framework",
2017-10-02 22:03:33 +02:00
"type": "silverstripe-vendormodule",
2017-07-03 06:53:53 +02:00
"description": "The SilverStripe framework",
"homepage": "http://silverstripe.org",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"framework"
],
"authors": [
{
"name": "SilverStripe",
"homepage": "http://silverstripe.com"
},
{
"name": "The SilverStripe Community",
"homepage": "http://silverstripe.org"
}
],
"bin": [
"sake"
],
2017-07-03 06:53:53 +02:00
"require": {
2022-08-04 07:41:32 +02:00
"php": "^8.1",
"composer/installers": "^2.2",
"guzzlehttp/guzzle": "^7.5.0",
2022-08-09 07:27:04 +02:00
"guzzlehttp/psr7": "^2.4.0",
2022-12-21 02:44:47 +01:00
"embed/embed": "^4.4.7",
2022-08-09 07:27:04 +02:00
"league/csv": "^9.8.0",
"m1/env": "^2.2.0",
"masterminds/html5": "^2.7.6",
"monolog/monolog": "^3.2.0",
"nikic/php-parser": "^4.15.0",
2023-01-16 12:20:57 +01:00
"psr/container": "^1.1 || ^2.0",
2023-05-24 04:27:33 +02:00
"psr/http-message": "^1",
"sebastian/diff": "^4.0",
2022-08-04 07:41:32 +02:00
"silverstripe/config": "^2",
Fix clobbering of the upload size validation (#10059) * Fix clobbering of the upload size validation When the validation is set here like this, it overrides validation which has already been setup with a simple '*' rule for the size based on PHP. If you've defined in the sites yml config something like SilverStripe\Assets\Upload_Validator: default_max_file_size: '[image]': '2m' '*' : '1m' then it will not be respected. If you review SilverStripe\Assets\Upload_Validator and check the getAllowedMaxFileSize method, you'll see the sizing will be populated (if it hasn't been done before). You can see it fail by; - Setup a new SilverStripe site. - Set your PHP to allow max post / max upload size of 10mb. - Add the above config to your sites yml file and flush. - In the CMS you'll be able to upload a 5MB file, when you shouldn't. * Test that FileField will use size validation if defined Couple of tests which prove a fix so the FileField and others will use the default_max_file_size setting * Fix variable name in last commit This is what happens when you refactor in the github window. Fix the variable names. This will get squashed once merged. * Updates the pr - white space and non deprecated method for byte conversion Remove extra white space to appease the CS. Use the non deprecated method for memstring2bytes * White space fixes for the phpcs White space fixes for the phpcs * Ensure that "memstring2bytes" can handle if an empty or value with no number is passed in * DEP Bump assets constraint to ensure that change is also pulled in --------- Co-authored-by: Guy Sartorelli <guy.sartorelli@silverstripe.com>
2024-01-08 03:49:41 +01:00
"silverstripe/assets": "^2.2",
2022-08-04 07:41:32 +02:00
"silverstripe/vendor-plugin": "^2",
2022-08-09 07:27:04 +02:00
"sminnee/callbacklist": "^0.1.1",
2022-09-07 06:08:54 +02:00
"symfony/cache": "^6.1",
"symfony/config": "^6.1",
"symfony/dom-crawler": "^6.1",
2022-09-07 06:08:54 +02:00
"symfony/filesystem": "^6.1",
"symfony/mailer": "^6.1",
"symfony/mime": "^6.1",
"symfony/translation": "^6.1",
2024-02-02 01:15:32 +01:00
"symfony/validator": "^6.1",
2022-09-07 06:08:54 +02:00
"symfony/yaml": "^6.1",
2018-10-05 16:52:47 +02:00
"ext-ctype": "*",
"ext-dom": "*",
"ext-hash": "*",
2017-07-03 06:53:53 +02:00
"ext-intl": "*",
2018-10-05 16:52:47 +02:00
"ext-json": "*",
2017-07-03 06:53:53 +02:00
"ext-mbstring": "*",
2018-10-05 16:52:47 +02:00
"ext-session": "*",
2017-07-03 06:53:53 +02:00
"ext-simplexml": "*",
"ext-tokenizer": "*",
2018-10-05 16:52:47 +02:00
"ext-xml": "*"
},
2017-07-03 06:53:53 +02:00
"require-dev": {
2023-08-09 05:01:52 +02:00
"phpunit/phpunit": "^9.6",
2022-08-04 07:41:32 +02:00
"silverstripe/versioned": "^2",
2024-02-13 02:33:23 +01:00
"squizlabs/php_codesniffer": "^3.7",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
"conflict": {
"egulias/email-validator": "^2",
"oscarotero/html-parser": "<0.1.7",
"symfony/process": "<5.3.7"
},
2017-07-03 06:53:53 +02:00
"provide": {
"psr/container-implementation": "1.0.0"
},
2017-07-05 06:22:06 +02:00
"extra": {
2017-10-02 22:03:33 +02:00
"expose": [
"client/images",
"client/styles"
2017-10-02 22:03:33 +02:00
]
2017-07-05 06:22:06 +02:00
},
2017-07-03 06:53:53 +02:00
"autoload": {
"psr-4": {
"SilverStripe\\Control\\": "src/Control/",
"SilverStripe\\Control\\Tests\\": "tests/php/Control/",
"SilverStripe\\Core\\": "src/Core/",
"SilverStripe\\Core\\Tests\\": "tests/php/Core/",
"SilverStripe\\Dev\\": "src/Dev/",
"SilverStripe\\Dev\\Tests\\": "tests/php/Dev/",
"SilverStripe\\Forms\\": "src/Forms/",
"SilverStripe\\Forms\\Tests\\": "tests/php/Forms/",
"SilverStripe\\i18n\\": "src/i18n/",
"SilverStripe\\i18n\\Tests\\": "tests/php/i18n/",
"SilverStripe\\Logging\\": "src/Logging/",
"SilverStripe\\Logging\\Tests\\": "tests/php/Logging/",
"SilverStripe\\ORM\\": "src/ORM/",
"SilverStripe\\ORM\\Tests\\": "tests/php/ORM/",
"SilverStripe\\Security\\": "src/Security/",
"SilverStripe\\Security\\Tests\\": "tests/php/Security/",
"SilverStripe\\View\\": "src/View/",
"SilverStripe\\View\\Tests\\": "tests/php/View/",
"SilverStripe\\Framework\\Tests\\Behaviour\\": "tests/behat/src/"
},
"files": [
"src/includes/constants.php"
]
},
"include-path": [
"thirdparty/"
],
"scripts": {
"lint": "phpcs src/ tests/php/ tests/behat/src/",
"lint-clean": "phpcbf src/ tests/php/ tests/behat/src/",
2017-07-03 06:53:53 +02:00
"php-peg": "php thirdparty/php-peg/cli.php src/View/SSTemplateParser.peg > src/View/SSTemplateParser.php"
},
"minimum-stability": "dev",
"prefer-stable": true
}