tehnika/vendor/october/rain/composer.json

108 lines
3.2 KiB
JSON

{
"name": "october/rain",
"description": "October Rain Library",
"homepage": "http://octobercms.com",
"keywords": ["october", "cms", "rain"],
"license": "MIT",
"authors": [
{
"name": "Alexey Bobkov",
"email": "aleksey.bobkov@gmail.com",
"role": "Co-founder"
},
{
"name": "Samuel Georges",
"email": "daftspunky@gmail.com",
"role": "Co-founder"
}
],
"require": {
"php": ">=7.2.9",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-PDO": "*",
"ext-zip": "*",
"doctrine/dbal": "^2.6",
"erusev/parsedown-extra": "~0.7",
"linkorb/jsmin-php": "~1.0",
"wikimedia/less.php": "~3.0",
"scssphp/scssphp": "~1.0",
"symfony/yaml": "^3.4",
"twig/twig": "~2.0",
"league/csv": "~9.1",
"nesbot/carbon": "^2.0",
"laravel/framework": "~6.0",
"laravel/tinker": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.12|^9.3.3",
"mockery/mockery": "~1.3.3|^1.4.2",
"illuminate/database": "^6.0",
"illuminate/encryption": "^6.0",
"illuminate/filesystem": "^6.0",
"illuminate/queue": "^6.0",
"illuminate/support": "^6.0",
"illuminate/log": "^6.0",
"illuminate/mail": "^6.0",
"illuminate/events": "^6.0",
"illuminate/pagination": "^6.0",
"illuminate/redis": "^6.0",
"illuminate/routing": "^6.0",
"illuminate/validation": "^6.0",
"illuminate/view": "^6.0",
"illuminate/cache": "^6.0",
"squizlabs/php_codesniffer": "3.*",
"php-parallel-lint/php-parallel-lint": "^1.0",
"meyfa/phpunit-assert-gd": "^2.0.0|^3.0.0",
"dms/phpunit-arraysubset-asserts": "^0.1.0|^0.2.1"
},
"suggest": {
"ext-pdo_dblib": "Required to use MS SQL Server databases",
"ext-pdo_mysql": "Required to use MySQL databases",
"ext-PDO_ODBC": "Required to use databases accessed through ODBC drivers",
"ext-pdo_pgsql": "Required to use PostgreSQL databases",
"ext-pdo_sqlite": "Required to use SQLite databases"
},
"autoload": {
"files": [
"src/Support/helpers.php",
"src/Router/helpers.php",
"src/Html/helpers.php"
],
"psr-4": {
"October\\Rain\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/DbTestCase.php"
]
},
"scripts": {
"test": [
"phpunit --stop-on-failure"
],
"lint": [
"parallel-lint --exclude vendor --exclude storage --exclude tests/fixtures/plugins/testvendor/goto/Plugin.php ."
],
"sniff": [
"phpcs --colors -nq --report=\"full\" --extensions=\"php\""
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}