Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/labs
- ╰─➤ composer create-project symfony/framework-standard-edition my_symfony_standard_edition
- Installing symfony/framework-standard-edition (v3.4.21)
- - Installing symfony/framework-standard-edition (v3.4.21): Downloading (100%)
- Created project in my_symfony_standard_edition
- Loading composer repositories with package information
- Installing dependencies (including require-dev) from lock file
- Package operations: 39 installs, 0 updates, 0 removals
- - Installing doctrine/lexer (v1.0.1): Loading from cache
- - Installing doctrine/annotations (v1.4.0): Downloading (100%)
- - Installing symfony/polyfill-ctype (v1.10.0): Loading from cache
- - Installing twig/twig (v1.36.0): Downloading (100%)
- - Installing paragonie/random_compat (v2.0.18): Downloading (100%)
- - Installing symfony/polyfill-php70 (v1.10.0): Downloading (100%)
- - Installing symfony/polyfill-util (v1.10.0): Downloading (100%)
- - Installing symfony/polyfill-php56 (v1.10.0): Downloading (100%)
- - Installing symfony/polyfill-mbstring (v1.10.0): Loading from cache
- - Installing symfony/symfony (v3.4.21): Downloading (100%)
- - Installing symfony/polyfill-intl-icu (v1.10.0): Downloading (100%)
- - Installing symfony/polyfill-apcu (v1.10.0): Downloading (100%)
- - Installing psr/simple-cache (1.0.1): Loading from cache
- - Installing psr/log (1.1.0): Loading from cache
- - Installing psr/link (1.0.0): Downloading (100%)
- - Installing psr/container (1.0.0): Loading from cache
- - Installing psr/cache (1.0.1): Loading from cache
- - Installing fig/link-util (1.0.0): Downloading (100%)
- - Installing doctrine/inflector (v1.1.0): Downloading (100%)
- - Installing doctrine/collections (v1.4.0): Downloading (100%)
- - Installing doctrine/cache (v1.6.2): Downloading (100%)
- - Installing doctrine/common (v2.7.3): Downloading (100%)
- - Installing jdorn/sql-formatter (v1.2.17): Downloading (100%)
- - Installing doctrine/doctrine-cache-bundle (1.3.5): Downloading (100%)
- - Installing doctrine/dbal (v2.5.13): Downloading (100%)
- - Installing doctrine/doctrine-bundle (1.10.0): Downloading (100%)
- - Installing doctrine/instantiator (1.0.5): Downloading (100%)
- - Installing doctrine/orm (v2.5.14): Downloading (100%)
- - Installing incenteev/composer-parameter-handler (v2.1.3): Downloading (100%)
- - Installing composer/ca-bundle (1.1.3): Downloading (100%)
- - Installing sensiolabs/security-checker (v5.0.3): Downloading (100%)
- - Installing sensio/distribution-bundle (v5.0.24): Downloading (100%)
- - Installing sensio/framework-extra-bundle (v5.2.4): Downloading (100%)
- - Installing monolog/monolog (1.24.0): Loading from cache
- - Installing symfony/monolog-bundle (v3.3.1): Downloading (100%)
- - Installing swiftmailer/swiftmailer (v5.4.12): Downloading (100%)
- - Installing symfony/swiftmailer-bundle (v2.6.7): Downloading (100%)
- - Installing sensio/generator-bundle (v3.1.7): Downloading (100%)
- - Installing symfony/phpunit-bridge (v3.4.21): Downloading (100%)
- paragonie/random_compat suggests installing ext-libsodium (Provides a modern crypto API that can be used to generate random bytes.)
- symfony/polyfill-intl-icu suggests installing ext-intl (For best performance)
- doctrine/doctrine-cache-bundle suggests installing symfony/security-acl (For using this bundle to cache ACLs)
- sensio/framework-extra-bundle suggests installing symfony/psr-http-message-bridge (To use the PSR-7 converters)
- monolog/monolog suggests installing aws/aws-sdk-php (Allow sending log messages to AWS services like DynamoDB)
- monolog/monolog suggests installing doctrine/couchdb (Allow sending log messages to a CouchDB server)
- monolog/monolog suggests installing ext-amqp (Allow sending log messages to an AMQP server (1.0+ required))
- monolog/monolog suggests installing ext-mongo (Allow sending log messages to a MongoDB server)
- monolog/monolog suggests installing graylog2/gelf-php (Allow sending log messages to a GrayLog2 server)
- monolog/monolog suggests installing mongodb/mongodb (Allow sending log messages to a MongoDB server via PHP Driver)
- monolog/monolog suggests installing php-amqplib/php-amqplib (Allow sending log messages to an AMQP server using php-amqplib)
- monolog/monolog suggests installing php-console/php-console (Allow sending log messages to Google Chrome)
- monolog/monolog suggests installing rollbar/rollbar (Allow sending log messages to Rollbar)
- monolog/monolog suggests installing ruflin/elastica (Allow sending log messages to an Elastic Search server)
- monolog/monolog suggests installing sentry/sentry (Allow sending log messages to a Sentry server)
- symfony/phpunit-bridge suggests installing ext-zip (Zip support is required when using bin/simple-phpunit)
- Generating autoload files
- > Incenteev\ParameterHandler\ScriptHandler::buildParameters
- Creating the "app/config/parameters.yml" file
- Some parameters are missing. Please provide them.
- database_host (127.0.0.1):
- database_port (null): 3306
- database_name (symfony): framework-standard-edition
- database_user (root):
- database_password (null):
- mailer_transport (smtp):
- mailer_host (127.0.0.1):
- mailer_user (null):
- mailer_password (null):
- secret (ThisTokenIsNotSoSecretChangeIt):
- > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap
- > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache
- // Clearing the cache for the dev environment with debug
- // true
- [OK] Cache for the "dev" environment (debug=true) was successfully cleared.
- > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets
- Trying to install assets as relative symbolic links.
- [OK] No assets were provided by any bundle.
- > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile
- > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::prepareDeploymentTarget
- ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/labs
- ╰─➤ cd my_symfony_standard_edition
- ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/labs/my_symfony_standard_edition
- ╰─➤ cat composer.json
- {
- "name": "symfony/framework-standard-edition",
- "license": "MIT",
- "type": "project",
- "description": "The \"Symfony Standard Edition\" distribution",
- "autoload": {
- "psr-4": {
- "AppBundle\\": "src/AppBundle"
- },
- "classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
- },
- "autoload-dev": {
- "psr-4": { "Tests\\": "tests/" },
- "files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
- },
- "require": {
- "php": ">=5.5.9",
- "doctrine/doctrine-bundle": "^1.6",
- "doctrine/orm": "^2.5",
- "incenteev/composer-parameter-handler": "^2.0",
- "sensio/distribution-bundle": "^5.0.19",
- "sensio/framework-extra-bundle": "^5.0.0",
- "symfony/monolog-bundle": "^3.1.0",
- "symfony/polyfill-apcu": "^1.0",
- "symfony/swiftmailer-bundle": "^2.6.4",
- "symfony/symfony": "3.4.*",
- "twig/twig": "^1.0||^2.0"
- },
- "require-dev": {
- "sensio/generator-bundle": "^3.0",
- "symfony/phpunit-bridge": "^3.0"
- },
- "scripts": {
- "symfony-scripts": [
- "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
- "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
- "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
- "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
- "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
- "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
- ],
- "post-install-cmd": [
- "@symfony-scripts"
- ],
- "post-update-cmd": [
- "@symfony-scripts"
- ]
- },
- "config": {
- "platform": {
- "php": "5.6"
- },
- "sort-packages": true
- },
- "extra": {
- "symfony-app-dir": "app",
- "symfony-bin-dir": "bin",
- "symfony-var-dir": "var",
- "symfony-web-dir": "web",
- "symfony-tests-dir": "tests",
- "symfony-assets-install": "relative",
- "incenteev-parameters": {
- "file": "app/config/parameters.yml"
- },
- "branch-alias": {
- "dev-master": "3.4-dev"
- }
- }
- }
- ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/labs/my_symfony_standard_edition
- ╰─➤
Advertisement
Add Comment
Please, Sign In to add comment