Not able to install Symfony 4.2.10 version - symfony-4.2

What I've tried:
I tried with:
composer create-project symfony/framework-standard-edition my_project_name "4.2.*"
But get:
" Could not find package symfony/framework-standard-edition with version 4.2.10."
And I need the exact one. Any help?

The package symfony/framework-standard-edition is for 3.4.* version. For 4.2.* you should use symfony/website-skeleton.
composer create-project symfony/website-skeleton my_project_name "4.2.*"
More details in the official documentation.

Related

Update Magento2 version 2.4.3-p2 to 2.4.4

I have an issue with the upgrade of Magento from 2.4.3-p2 to 2.4.4.
Here my steps to reproduce:
composer require magento/product-community-edition 2.4.4 --no-update
composer update php-amqplib/php-amqplib
I have tried with option -W, but i get always this exception:
*Problem 1
- Root composer.json requires magento/product-community-edition 2.4.4, found magento/product-community-edition[2.4.4] but the package is fixed to 2.4.3-p2 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
Problem 2
- Root composer.json requires friendsofphp/php-cs-fixer 3.3.0, found friendsofphp/php-cs-fixer[v3.3.0] but the package is fixed to v2.18.7 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command......
Problem 3*
Could someone tell me, how can I start the upgrade with all dependencies?
Hint: This commande doesn't work "composer update -W"
Thanks alot
You can update the correct version on composer.json
Or just use the following command
composer require magento/product-community-edition 2.4.4 --update-with-all-dependencies
composer update php-amqplib/php-amqplib --with-all-dependencies

Error in installing Shipstation Plugin for Magento 2 Store

I am installing Auctane-ShipStation module for Magento 2.3.4 by referring the following site https://help.shipstation.com/hc/en-us/articles/360025855652-Magento#connect-a-magento-store-to-shipstation-0-1.
There is no option to directly download the shipstation module. They are asking to install it via composer. I am using " composer require auctane/api:2.2.9 " command to install it but it is giving error " [InvalidArgumentException] Could not find a matching version of package auctane/api. Check the package spelling, your version constraint and the package is available in a stability which matches your minimum-stability( stable). "
Open your composer.json if that package has no stable version then you have to change your minimum-stability to dev.
https://getcomposer.org/doc/04-schema.md#minimum-stability

Installation request for zofe/rapyd dev-master

After cloning & while doing composer update I am getting the error :
Installation request for zofe/rapyd dev-master
Conclusion: don't install intervention/image 2.4.2
.......
......
......
I am using xampp 7.2.8 , composer 1.7.1, Windows 10 in Virtualbox.
I have cloned the created database, but unable to run the composer update or php artisan migrate as mentioned in https://github.com/raylight75/cms#official-documentation .
Could someone help me ?
I have posted the same issue in https://github.com/raylight75/cms/issues/8
From the composer log you've posted, it looks like the package you are trying to install zofe/rapyd#dev-master is not compatible with the version of Laravel you're using.
The log you've posted also differs to the error you've posted in your question. There is no mention of intervention/image in the logs. Instead, the log is showing an issue with laravelcollective/html and nesbot/carbon.
Try installing the latest stable version by updating the composer.json file and changing the version from dev-master to ~2.2. The latest stable version is v2.2.7, while version 2.6.3 is pre-release, but supports Laravel 5.6.
The issue may also be fixed by updating your version of Laravel to v5.6. However, this is likely to be more work than just using a lower version of zofe/rapyd.

Upgrade TYPO3 to a specific version

I am new to TYPO3 and tried to install the official introduction package.
I found the package in the extension manager and clicked install but got the following message:
Could not install distribution 'bootstrap_package'
Your TYPO3 version is lower than this extension requires. It requires TYPO3 versions 6.2.14 - 7.99.99
I am using TYPO3 version 6.2.11.
I installed the system via docker TYPO3-docker-boilerplate.
I think this tool uses composer to get the TYPO3 base distribution.
I tried the upgrade wizard but there was no option to choose a specific version to upgrade to. So how can I upgrade TYPO3 to version 6.2.14?
I need to use version 6.2.
Unfortunately, the cms-base-distribution Composer package hasn't been updated since March. So you have to set the typo3/cms package in the composer.json file to the version you need (latest stable version of 6.2 is 6.2.15). The file is located in the code directory.
Then run composer update in the same directory.
This should update one dependency and the cms package itself:
- Removing helhum/class-alias-loader (1.0.99)
- Installing helhum/class-alias-loader (1.1.5)
Downloading: 100%
- Removing typo3/cms (6.2.11)
- Installing typo3/cms (6.2.15)
Downloading: 100%

configuration of xdebug on centos with php-5.2.8

I followed the link http://xdebug.org/wizard.php to install xdebug2.2.1 for netbeans7.2 php in my centos5.8 but I dnt have phpize for which i need to install php5-dev and I need to work on php version 5.2.8 so was unable to install php5-dev in centos5.8
my rpm -qa |grep php gives out following:
php-common-5.2.8-1.fc5.remi , php-mysql-5.2.8-1.fc5.remi ,
php-gd-5.2.8-1.fc5.remi , php-5.2.8-1.fc5.remi ,
php-cli-5.2.8-1.fc5.remi , php-pdo-5.2.8-1.fc5.remi
php-xml-5.2.8-1.fc5.remi
Please help me find a way to install xdebug for the following technical stack
php-5.2.8
centos-5.8
can not change php version but flexible to upgrade or downgrade centos
Thank you all
found answer for my question I needed to install php-devel-5.2.8-1.fc5.remi to make phpize work and then followed the link mention earlier http://xdebug.org/wizard.php .Its working fine.