123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- {
- "name": "laravel/framework",
- "description": "The Laravel Framework.",
- "keywords": ["framework", "laravel"],
- "license": "MIT",
- "homepage": "http://laravel.com",
- "support": {
- "issues": "https://github.com/laravel/framework/issues",
- "source": "https://github.com/laravel/framework"
- },
- "authors": [
- {
- "name": "Taylor Otwell",
- "email": "taylorotwell@gmail.com"
- }
- ],
- "require": {
- "php": ">=5.4.0",
- "ext-openssl": "*",
- "ext-mcrypt": "*",
- "ext-mbstring": "*",
- "classpreloader/classpreloader": "~1.2",
- "danielstjules/stringy": "~1.8",
- "doctrine/inflector": "~1.0",
- "ircmaxell/password-compat": "~1.0",
- "jeremeamia/superclosure": "~2.0",
- "league/flysystem": "~1.0",
- "monolog/monolog": "~1.11",
- "mtdowling/cron-expression": "~1.0",
- "nesbot/carbon": "~1.0",
- "psy/psysh": "0.4.*",
- "swiftmailer/swiftmailer": "~5.1",
- "symfony/console": "2.6.*",
- "symfony/debug": "2.6.*",
- "symfony/finder": "2.6.*",
- "symfony/http-foundation": "2.6.*",
- "symfony/http-kernel": "2.6.*",
- "symfony/process": "2.6.*",
- "symfony/routing": "2.6.*",
- "symfony/security-core": "2.6.*",
- "symfony/translation": "2.6.*",
- "symfony/var-dumper": "2.6.*",
- "vlucas/phpdotenv": "~1.0"
- },
- "replace": {
- "illuminate/auth": "self.version",
- "illuminate/bus": "self.version",
- "illuminate/cache": "self.version",
- "illuminate/config": "self.version",
- "illuminate/console": "self.version",
- "illuminate/container": "self.version",
- "illuminate/contracts": "self.version",
- "illuminate/cookie": "self.version",
- "illuminate/database": "self.version",
- "illuminate/encryption": "self.version",
- "illuminate/events": "self.version",
- "illuminate/exception": "self.version",
- "illuminate/filesystem": "self.version",
- "illuminate/foundation": "self.version",
- "illuminate/hashing": "self.version",
- "illuminate/http": "self.version",
- "illuminate/log": "self.version",
- "illuminate/mail": "self.version",
- "illuminate/pagination": "self.version",
- "illuminate/pipeline": "self.version",
- "illuminate/queue": "self.version",
- "illuminate/redis": "self.version",
- "illuminate/routing": "self.version",
- "illuminate/session": "self.version",
- "illuminate/support": "self.version",
- "illuminate/translation": "self.version",
- "illuminate/validation": "self.version",
- "illuminate/view": "self.version"
- },
- "require-dev": {
- "aws/aws-sdk-php": "~2.4",
- "iron-io/iron_mq": "~1.5",
- "pda/pheanstalk": "~3.0",
- "predis/predis": "~1.0",
- "mockery/mockery": "~0.9",
- "phpunit/phpunit": "~4.0"
- },
- "autoload": {
- "classmap": [
- "src/Illuminate/Queue/IlluminateQueueClosure.php"
- ],
- "files": [
- "src/Illuminate/Foundation/helpers.php",
- "src/Illuminate/Support/helpers.php"
- ],
- "psr-4": {
- "Illuminate\\": "src/Illuminate/"
- }
- },
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "suggest": {
- "aws/aws-sdk-php": "Required to use the SQS queue driver (~2.4).",
- "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
- "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers (~5.0).",
- "iron-io/iron_mq": "Required to use the iron queue driver (~1.5).",
- "league/flysystem-aws-s3-v2": "Required to use the Flysystem S3 driver (~1.0).",
- "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
- "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
- "predis/predis": "Required to use the redis cache and queue drivers (~1.0)."
- },
- "minimum-stability": "dev"
- }
|