I installed Doctrine via composer:
{
"require": {
"doctrine/common": "2.4.*",
"doctrine/dbal": "2.4.*",
"doctrine/orm": "2.4.*",
"phpunit/phpunit": "3.7.*"
}
}
When running unit tests, the location of the Arra...
I'm including in my ghunti / highcharts-php composer: "~ 3.0" and after that my autoload stops working resulting in the fatal error below, what could it be? >
Fatal error: Call to undefined method
Composer \ Autoload \ ClassLoader :: se...
What is the best way to use libraries downloaded by Composer along with Zend Framework 1?
I saw the next link , explaining how to do this procedure however in a way that does not seem to be much correct.
In a comment it is said to leave t...
I'm trying to install the composer and it gives the following error:
The Composer installer script was not successful [exit code 1].
OpenSSL failed with a 'certificate verify failed' error. This indicates a problem with the Certificate Author...
I'm trying to use the node's nmp command to work with laravel, but I get the following error;
Pc1@Fund-Sala2-pc1 MINGW64 /c/Laravel/teste
$ npm install && npm run dev
npm WARN deprecated [email protected]: Browserslist 2 could fail o...
When I ran the commands
composer require symfony / filesystem
composer update, the following error is occurring in my project, in whatever route I go. Could you help me? I'm using symfony 3.0 with MySQL database on the Apache server.
Un...
I installed the mpdf library via composer in codeigniter 2 and made a helper file where I call that library to generate the pdf. So inside that helper I call the autoload with require_once and it works perfectly locally. But when I went up in pr...
kalil@debian:~$ composer global require "laravel/installer"
Changed current directory to /home/kalil/.config/composer
Using version ^2.0 for laravel/installer
./composer.json has been created
Loading composer repositories with package information...
I'm using git to version a project and I noticed when checking for modifications that some .json files have a file with the same name but with different extensions and content.
Example: composer.lock , yarn.lock .
What are they?
What...
So when I get to Classe Plans below
<?php
namespace CONTROLES;
class Planos {
private $conexao;
public function __construct ($_conexao) {
$this->conexao = $_conexao;
}
...