Permalink
Cannot retrieve contributors at this time
104 lines (104 sloc)
3.33 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
forkcms/composer.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "forkcms/forkcms", | |
"description": "Fork is an open source CMS that will rock your world.", | |
"keywords": [ | |
"cms", | |
"fork", | |
"fork cms", | |
"content management system", | |
"symfony", | |
"blog", | |
"php" | |
], | |
"homepage": "http://www.fork-cms.com/", | |
"license": "MIT", | |
"require": { | |
"php": "^7.1", | |
"ext-json": "*", | |
"ext-zip": "*", | |
"ext-gd": "*", | |
"ext-intl": "*", | |
"ext-simplexml": "*", | |
"behat/transliterator": "~1.0", | |
"doctrine/doctrine-bundle": "^1.6", | |
"doctrine/orm": "^2.5", | |
"google/apiclient": "~1.1.2", | |
"google/recaptcha": "~1.1", | |
"jeroendesloovere/geolocation-php-api": "^2.1", | |
"league/flysystem": "~1.0", | |
"league/flysystem-aws-s3-v3": "^1.0.13", | |
"league/flysystem-cached-adapter": "^1.0.6", | |
"liip/imagine-bundle": "^1.7", | |
"mailmotor/campaignmonitor-bundle": "^2.0", | |
"mailmotor/mailchimp-bundle": "^3.0", | |
"mailmotor/mailmotor-bundle": "^3.0", | |
"matthiasmullie/minify": "~1.3", | |
"matthiasmullie/scrapbook": "^1.3", | |
"pimple/pimple": "^3.2", | |
"ramsey/uuid": "^3.5", | |
"ramsey/uuid-doctrine": "^1.2", | |
"simple-bus/doctrine-orm-bridge": "^4.0", | |
"simple-bus/symfony-bridge": "^4.1", | |
"spoon/library": "^3.0", | |
"swiftmailer/swiftmailer": "^6.0", | |
"symfony/assetic-bundle": "^2.8", | |
"symfony/monolog-bundle": "^3.1", | |
"symfony/swiftmailer-bundle": "^3.0", | |
"symfony/symfony": "^3.3", | |
"tijsverkoyen/akismet": "1.1.*", | |
"tijsverkoyen/css-to-inline-styles": "1.5.*", | |
"phpoffice/phpspreadsheet": "^1.12", | |
"composer/package-versions-deprecated": "^1.11" | |
}, | |
"require-dev": { | |
"jdorn/sql-formatter": "1.2.17", | |
"symfony/var-dumper": "^3.3", | |
"squizlabs/php_codesniffer": "^3.5", | |
"symfony/phpunit-bridge": "*", | |
"phpstan/phpstan": "^0.12.52", | |
"phpstan/phpstan-symfony": "^0.12.7" | |
}, | |
"config": { | |
"bin-dir": "bin" | |
}, | |
"support": { | |
"forum": "https://fork-cms.herokuapp.com", | |
"issues": "https://github.com/forkcms/forkcms/issues" | |
}, | |
"scripts": { | |
"test": "./bin/simple-phpunit", | |
"post-install-cmd": [ | |
"php bin/console assetic:dump .", | |
"php bin/console forkcms:cache:clear", | |
"php bin/console cache:clear --no-warmup", | |
"php bin/console cache:warmup" | |
], | |
"post-update-cmd": [ | |
"php bin/console assetic:dump .", | |
"php bin/console forkcms:cache:clear", | |
"php bin/console cache:clear --no-warmup", | |
"php bin/console cache:warmup" | |
] | |
}, | |
"autoload": { | |
"psr-4": { | |
"Frontend\\": "src/Frontend", | |
"Backend\\": "src/Backend", | |
"Common\\": "src/Common", | |
"Console\\": "src/Console", | |
"ForkCMS\\": "src/ForkCMS", | |
"ForkCMS\\App\\": "app", | |
"CKSource\\CKFinder\\": "src/Backend/Core/Js/ckfinder/core/connector/php/CKSource/CKFinder" | |
}, | |
"exclude-from-classmap": [ | |
"**/Tests/", | |
"**/tests/", | |
"**/Test/" | |
] | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"ForkCMS\\Tests\\": "tests/" | |
} | |
} | |
} |