2012-11-01 17:28:51 +01:00
|
|
|
{
|
2016-08-11 01:40:23 +02:00
|
|
|
"name": "silverstripe/framework",
|
|
|
|
"type": "silverstripe-module",
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
|
|
|
"composer/installers": "~1.0",
|
2017-04-03 06:30:01 +02:00
|
|
|
"embed/embed": "^3.0",
|
2016-05-19 19:50:51 +02:00
|
|
|
"league/flysystem": "~1.0.12",
|
|
|
|
"monolog/monolog": "~1.11",
|
|
|
|
"nikic/php-parser": "^2 || ^3",
|
2017-05-19 12:18:56 +02:00
|
|
|
"paragonie/random_compat": "^2.0",
|
2016-05-19 19:50:51 +02:00
|
|
|
"silverstripe/config": "^1@dev",
|
2017-03-16 04:47:26 +01:00
|
|
|
"silverstripe/assets": "^1@dev",
|
2017-01-18 04:58:48 +01:00
|
|
|
"swiftmailer/swiftmailer": "~5.4",
|
2017-02-23 20:39:57 +01:00
|
|
|
"symfony/cache": "^3.3@dev",
|
2017-01-20 03:57:50 +01:00
|
|
|
"symfony/config": "^3.2",
|
2017-02-01 06:09:25 +01:00
|
|
|
"symfony/translation": "^2.8",
|
2017-01-20 03:57:50 +01:00
|
|
|
"symfony/yaml": "~3.2",
|
2017-04-20 07:44:18 +02:00
|
|
|
"vlucas/phpdotenv": "^2.4",
|
|
|
|
|
|
|
|
"php": ">=5.6.0",
|
|
|
|
"ext-intl": "*",
|
|
|
|
"ext-mbstring": "*",
|
|
|
|
"ext-xml": "*",
|
|
|
|
"ext-simplexml": "*",
|
|
|
|
"ext-dom": "*",
|
|
|
|
"ext-tokenizer": "*",
|
|
|
|
"ext-ctype": "*",
|
|
|
|
"ext-hash": "*",
|
2017-05-19 03:45:07 +02:00
|
|
|
"ext-session": "*",
|
2017-05-19 06:33:08 +02:00
|
|
|
"psr/container-implementation": "1.0.0",
|
|
|
|
"psr/container": "1.0.0"
|
2016-05-27 03:09:03 +02:00
|
|
|
},
|
2016-08-11 01:40:23 +02:00
|
|
|
"require-dev": {
|
2017-03-30 16:20:36 +02:00
|
|
|
"phpunit/phpunit": "^5.7",
|
2017-03-21 04:22:23 +01:00
|
|
|
"silverstripe/versioned": "^1.0@dev",
|
2017-01-20 03:57:50 +01:00
|
|
|
"silverstripe/behat-extension": "^3",
|
2016-09-13 08:23:31 +02:00
|
|
|
"silverstripe/serve": "dev-master",
|
|
|
|
"se/selenium-server-standalone": "2.41.0"
|
2016-08-11 01:40:23 +02:00
|
|
|
},
|
2017-05-19 03:45:07 +02:00
|
|
|
"provide": {
|
|
|
|
"psr/container-implementation": "1.0.0"
|
|
|
|
},
|
2016-08-11 01:40:23 +02:00
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
|
|
|
"dev-master": "4.0.x-dev"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2016-11-01 04:13:06 +01:00
|
|
|
"SilverStripe\\Control\\": "src/Control/",
|
2016-10-14 03:30:05 +02:00
|
|
|
"SilverStripe\\Control\\Tests\\": "tests/php/Control/",
|
2016-11-01 04:13:06 +01:00
|
|
|
"SilverStripe\\Core\\": "src/Core/",
|
2016-10-14 03:30:05 +02:00
|
|
|
"SilverStripe\\Core\\Tests\\": "tests/php/Core/",
|
2016-11-01 04:13:06 +01:00
|
|
|
"SilverStripe\\Dev\\": "src/Dev/",
|
2016-10-14 03:30:05 +02:00
|
|
|
"SilverStripe\\Dev\\Tests\\": "tests/php/Dev/",
|
2016-11-01 04:13:06 +01:00
|
|
|
"SilverStripe\\Forms\\": "src/Forms/",
|
2016-10-14 03:30:05 +02:00
|
|
|
"SilverStripe\\Forms\\Tests\\": "tests/php/Forms/",
|
2016-11-01 04:13:06 +01:00
|
|
|
"SilverStripe\\i18n\\": "src/i18n/",
|
2016-10-14 03:30:05 +02:00
|
|
|
"SilverStripe\\i18n\\Tests\\": "tests/php/i18n/",
|
2016-11-01 04:13:06 +01:00
|
|
|
"SilverStripe\\Logging\\": "src/Logging/",
|
2017-05-11 07:38:29 +02:00
|
|
|
"SilverStripe\\Logging\\Tests\\": "tests/php/Logging/",
|
2016-11-01 04:13:06 +01:00
|
|
|
"SilverStripe\\ORM\\": "src/ORM/",
|
2016-10-14 03:30:05 +02:00
|
|
|
"SilverStripe\\ORM\\Tests\\": "tests/php/ORM/",
|
2016-11-01 04:13:06 +01:00
|
|
|
"SilverStripe\\Security\\": "src/Security/",
|
2016-10-14 03:30:05 +02:00
|
|
|
"SilverStripe\\Security\\Tests\\": "tests/php/Security/",
|
|
|
|
"SilverStripe\\View\\": "src/View/",
|
2017-01-20 03:57:50 +01:00
|
|
|
"SilverStripe\\View\\Tests\\": "tests/php/View/",
|
|
|
|
"SilverStripe\\Framework\\Tests\\Behaviour\\": "tests/behat/src/"
|
2016-08-11 01:40:23 +02:00
|
|
|
},
|
2017-04-24 01:30:37 +02:00
|
|
|
"files": [
|
2017-06-22 12:50:45 +02:00
|
|
|
"src/includes/constants.php"
|
2017-01-20 03:57:50 +01:00
|
|
|
]
|
2016-08-19 00:51:35 +02:00
|
|
|
},
|
|
|
|
"include-path": [
|
2016-11-01 03:45:56 +01:00
|
|
|
"src/",
|
2017-06-22 12:50:45 +02:00
|
|
|
"src/includes/",
|
2016-09-13 22:47:48 +02:00
|
|
|
"thirdparty/"
|
2016-09-12 07:42:05 +02:00
|
|
|
],
|
2016-11-28 06:44:19 +01:00
|
|
|
"scripts": {
|
2017-05-12 05:17:23 +02:00
|
|
|
"lint": "phpcs src/ tests/php",
|
|
|
|
"lint-clean": "phpcbf src/ tests/php",
|
2017-04-10 04:11:58 +02:00
|
|
|
"php-peg": "php thirdparty/php-peg/cli.php src/View/SSTemplateParser.peg > src/View/SSTemplateParser.php"
|
2016-11-28 06:44:19 +01:00
|
|
|
},
|
2017-04-04 07:30:02 +02:00
|
|
|
"minimum-stability": "dev",
|
2016-09-12 07:42:05 +02:00
|
|
|
"prefer-stable": true
|
2013-04-30 18:08:50 +02:00
|
|
|
}
|