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"
|
|
|
|
}
|
|
|
|
],
|
2017-10-10 16:51:11 +02:00
|
|
|
"bin": [
|
|
|
|
"sake"
|
|
|
|
],
|
2017-07-03 06:53:53 +02:00
|
|
|
"require": {
|
2022-08-04 07:41:32 +02:00
|
|
|
"php": "^8.1",
|
2022-08-09 07:27:04 +02:00
|
|
|
"bramus/monolog-colored-line-formatter": "^2.0.3",
|
|
|
|
"composer/installers": "^2.1.1",
|
|
|
|
"guzzlehttp/guzzle": "^7.4.5",
|
|
|
|
"guzzlehttp/psr7": "^2.4.0",
|
|
|
|
"embed/embed": "^4.4.4",
|
|
|
|
"league/csv": "^9.8.0",
|
|
|
|
"m1/env": "^2.2.0",
|
|
|
|
"monolog/monolog": "^1.27.1",
|
|
|
|
"nikic/php-parser": "^4.14.0",
|
|
|
|
"psr/container": "^1.1.2",
|
2022-08-04 07:41:32 +02:00
|
|
|
"silverstripe/config": "^2",
|
|
|
|
"silverstripe/assets": "^2",
|
|
|
|
"silverstripe/vendor-plugin": "^2",
|
2022-08-09 07:27:04 +02:00
|
|
|
"sminnee/callbacklist": "^0.1.1",
|
|
|
|
"swiftmailer/swiftmailer": "^6.3.0",
|
|
|
|
"symfony/cache": "^4.4.44",
|
|
|
|
"symfony/config": "^4.4.44",
|
|
|
|
"symfony/translation": "^4.4.44",
|
|
|
|
"symfony/yaml": "^4.4.44",
|
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": "*"
|
2016-08-11 01:40:23 +02:00
|
|
|
},
|
2017-07-03 06:53:53 +02:00
|
|
|
"require-dev": {
|
2021-10-27 04:39:47 +02:00
|
|
|
"phpunit/phpunit": "^9.5",
|
2022-08-04 07:41:32 +02:00
|
|
|
"silverstripe/versioned": "^2",
|
2022-08-09 07:27:04 +02:00
|
|
|
"squizlabs/php_codesniffer": "^3.7"
|
2016-08-11 01:40:23 +02:00
|
|
|
},
|
2021-10-27 04:39:47 +02:00
|
|
|
"conflict": {
|
2022-08-09 07:01:45 +02:00
|
|
|
"egulias/email-validator": "^2"
|
2021-10-27 04:39:47 +02:00
|
|
|
},
|
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",
|
2019-09-11 03:10:25 +02:00
|
|
|
"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"
|
2021-08-18 02:16:45 +02:00
|
|
|
],
|
|
|
|
"classmap": [
|
|
|
|
"thirdparty/swiftmailer"
|
2017-07-03 06:53:53 +02:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"include-path": [
|
|
|
|
"src/",
|
|
|
|
"src/includes/",
|
|
|
|
"thirdparty/"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2017-08-14 05:53:03 +02:00
|
|
|
"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
|
2020-04-02 13:06:32 +02:00
|
|
|
}
|