I am trying to run Symfony application in the production server. I have uploaded my web files to public_html folder. I have installed Composer in my project resource using composer.phar install. Now I am trying to update Composer on the server I am getting this message/error
php composer.phar update
Loading composer repositories with package
it1352
0
2020-10-07
I'm trying to install behat and mink with symfony 2.4 using composer but I can't seem to get my composer.json file to an resolve to an installable set of packages.
I installed symfony2 using the command on http://symfony.com/doc/current/book/installation.html
php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Sy
it1352
0
2020-09-20
when I run
php composer.phar install
i have this error
Dependency resolution completed in 0.476 seconds
Your requirements could not be resolved to an installable set of
packages
Problem 1
- Conclusion: don't install symfony/cache v4.2.3
Conclusion: don't install symfony/cache v4.2.2
Conclusion: don't install symfony/
it1352
0
2020-10-07
Let's say I have a Symfony v4.4 (Flex) project with the following block in the composer.json:
"extra": {
"symfony": {
"allow-contrib": false,
"require": "4.4.*"
}
}
As expected, it restricts the Symfony core packages to stick to the v4.4 version.
symfony/monolog-bridge package respects it, so you cannot install symfony/m
it1352
0
2020-07-25
I'm trying to clone a github repository and issue a composer install on it. But I am getting this:
Warning: The lock file is not up to date with the latest changes in composer.json. You may be getting outdated dependencies. Run update to update them.
Your requirements could not be resolved to an installable set of packages.
Problem 1
it1352
3
2020-07-20
I try to install api-platform on an existing Symfony 3.4 application, which is installed without flex.
When I try to install it with composer require api-platform/core, an error occured:
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable
it1352
0
2020-10-07
php 7.3.5 hello i have a problem with the extension ext-http , and composer say me ext-http is missing even if i write this in composer .json , why ?
this this exact message:
_Problem 1
- The requested PHP extension ext-http * is missing from your system. Install or enable PHP's http extension. i tried to see th php.ini , and it i saw nothin t
it1352
1
2020-11-24
It installs:
Symfony 4.1.3 (kernel: src, env: dev, debug: true)
How do I get it to install exactly 4.0.*?
composer create-project symfony/skeleton new_project "4.0" Installing symfony/skeleton (v4.0.0)
- Installing symfony/skeleton (v4.0.0): Loading from cache Created project in aaaa Loading composer repositories with package information Updat
it1352
0
2020-10-07
I have setup a new dev enviorment via docker. I have a symfony2 (2.6) application, so I want to intitalize the mysql database using the app/console doctrine approach.
Yet when running
$ php app/console doctrine:database:create --if-not-exists
I get this error message:
[Doctrine\DBAL\Exception\ConnectionException]
it1352
3
2019-05-15
I have difficulties setting up a functional test in Symfony 3.2.4.
namespace Tests\AppBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class ClinicalTrialsControllerTest extends WebTestCase
{
public function testHTTPConnection()
{
$client = static::createClient();
The client is not created and I constantl
it1352
1
2020-11-11