Tagged Questions
0
votes
2answers
34 views
How to make composer recognize intl php extension
I'm trying to install some symfony bundles to create an admin tool found in this tutorial: http://www.ens.ro/2012/07/13/symfony2-jobeet-day-12-the-admin-bundle/
I'm using symfony 2.3.* and am using ...
0
votes
1answer
16 views
error installing symfony/symfony via composer due to gitattributes
I'm going to post this, then post the answer since it drove me crazy until I figured out the issue.
When installing symfony/symfony via composer, the process was repeatedly aborting due to this ...
-2
votes
2answers
36 views
Twitter Bootstrap on Symfony2 with NetBeans (Windows)
Good morning, I've a problem with XAMPP-NetBeans-Symfony2.
When I create a new project with NetBeans, I choose a PHP project and a PHP Application
As sources folder, I choose C:\xampp\htdocs\X and I ...
0
votes
1answer
18 views
behat.yml in app/config instead of root directory
I installed behat with mink and selenium2-driver for my Symfony2 project.
Is it possible to use the /app/config/behat.yml instead of the /behat.yml file?
I searched on google but I can't find ...
1
vote
1answer
19 views
Symfony2 images or extra folder issue
i am using the symfony 2, composer and sass framework
i have extra folders called files/ and images/ under MYBundle/Resources/public/
some reason this files or images folder are not creating under ...
0
votes
0answers
17 views
Can't Get a 3rd Party Symfony Bundle to Install
I'm trying to install a 3rd party bundle into my Smfony2 website. The web page for it is here. The documentation looked straight forward until I tried it. I found I needed to run composer.phar. When I ...
0
votes
1answer
82 views
Symfony2 and composer not installing packages
I'm trying to install the FOSUserBundle on Symfony2.
On trying to run this command in the Terminal
composer update friendsofsymfony/user-bundle
I am presented with this error:
Loading ...
1
vote
3answers
55 views
Slow updating of composer dependencies, despite --prefer-dist flag
Why does it take up to two minutes for my composer dependencies to update - even when there have been no changes?
A heavily upvoted answer suggests adding the --prefer-dist flag, which I have ...
0
votes
2answers
30 views
How to add custome bundles in symfony which are hosted locally?
Let's assume, I made a custom symfony bundle like a small ORM, and now I want to include this bundle and register it in the AppKernel currently, the bundle in found in the Vendor folder. So, what I ...
0
votes
1answer
27 views
symfony2 how to register bundles not installed throught composer
I have a bundle which I had to clone from a private repo, and cloned it from the vendor directory, and registered the bundle in the AppKernel.php now, I am getting an error that says, PHP fatal error: ...
0
votes
0answers
44 views
composer update on mac not working
Since I updated my PHP version to 5.4, I have trouble to update composer on my symphony 2 project.
$ php composer.phar update
gives me:
The "https://packagist.org/packages.json" file could not be ...
0
votes
2answers
39 views
Symfony2 composer.phar install
Hi i want to install this bundle:
https://packagist.org/packages/knplabs/knp-paginator-bundle
"knplabs/knp-paginator-bundle": "2.3.*@dev"
But i dont want to screw something with composer.phar ...
0
votes
1answer
637 views
Error updating dependencies composer
When I try to update, I get this error:
C:\wamp\www\bwon>composer update
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Installing ...
0
votes
1answer
41 views
Composer.phar in Symfony
I am trying to install the fosuserbundle in my composer.json but this problem appears in my console:
C:\xamppHE\php>php composer.phar install
Fatal error: Uncaught exception 'ErrorException' with ...
0
votes
1answer
29 views
Symfony2 console - use on its own
I have a small project with the following structure:
-- bin
-- init.php
-- app
-- all app directories here
-- tests
-- temp
I have installed the symfony2 console bundle using composer:
...