Tagged Questions
0
votes
0answers
11 views
Override Composer autoloader
Background
I'm developing a series of websites which share a common engine. Something very similar to StackExchange's network of websites. Every webiste is a separate Symfony2 installation on a ...
0
votes
0answers
16 views
composer lib local unpushed commit status
I'm working on a php composer lib. I make some local commits on the lib but don't push them. Then I use composer update to fetch updated commits from other people, and my local commits disappear. Is ...
0
votes
2answers
44 views
Laravel 4 (Beta 5) Routing error
I decided to use a new framework to me for my new project so i started with Laravel!
I'm starting to like it, had few problems but it sorted out. But now i'm having hard times with Routing!
Using ...
1
vote
0answers
17 views
PHPSpec loads file but not directory
This commands works (specify file):
./vendor/bin/phpspec.php Spec/Model/Entity/DescribeCustomer.php -f d -c --bootstrap module/Application/tests/Bootstrap.php
But using the directory does not:
...
0
votes
1answer
18 views
Composer.phar don't want to run by shell_exec from PHP script. Why?
Trying to execute it with all possible params, such as -d and full path etc.. No errors. When running another commands, all is ok, when running composer from CMD, all is ok too. Have tried exec, ...
0
votes
0answers
44 views
Custom installation path for composer packages
Hi I am trying to setup a project using composer.
I am able to install CakePHP but I am getting a hard time installing cakephp/debug_kit on a custom direcoty. I am trying to install it on ...
0
votes
1answer
35 views
PHP try-catch not recognized on command-line? (Trying to install Composer)
I am trying to install Composer (http://getcomposer.org/download/) on a GoDaddy-hosted Linux server but it's not working. No matter which method I try, I eventually run up against some version of the ...
0
votes
1answer
120 views
composer and php installation conflict for laravel 4 artisan
hi i start working Laravel 4, i have finished the installation process with composer, but when try to use artisan it always give a message
Laravel requires the Mcrypt PHP extension
i have checked ...
0
votes
1answer
76 views
Laravel routes not working.
Trying to get started with Laravel. Going through a simple tutorial (I thought) and they have this going through the route.php page.
Route::controller(Controller::detect());
Route::get('about', ...
0
votes
1answer
29 views
Composer - Default option for dev requirements
I noticed that ...
When I run 'composer help update' It tells me that the --dev option is enabled by default
--dev Enables installation of require-dev packages (enabled by default, only present ...
0
votes
1answer
48 views
Composer Not Generating Autoloads For Library
I've set up two projects, an 'init' and a library, which is required by the init. They both have PSR-0 autoloads set, but the autoload values from the library are not added to the ...
0
votes
3answers
60 views
Make composer retry failed downloads
I'm building an automated script that installs the latest version of Symfony 2.2, adds our company's CMS bundles to composer.json, creates a couple of new bundles and so on.
The automation works ...
2
votes
1answer
95 views
ZF2: autoloading libraries without namespaces
Previously I have only been using third party libraries that use namespaces together with Zend Framework 2. Now I need to use a library that does not use namespaces, and I cannot seem to make it work. ...
1
vote
1answer
34 views
Composer and multiple branches
I have a git project with 2 branches:
Master: Currently the "stable branch" but subjected to changed. Releases are tagged from there.
Devel: A development branch for the next version. This is merged ...
0
votes
0answers
39 views
Composer says package for require-dev is not found
I have a composer.json like this:
{
"require" : {
"triagens/arangodb" : "1.2.1",
"php" : ">=5.4.0"
},
"require-dev" : {
"triagens/arangodb" : "dev-devel@dev",
...
6
votes
1answer
138 views
Composer create-project fails on local package repository
I'm trying to create a local repository to test a composer project but
composer create-project --repository-url=/path/to/packages.json vendor/project-name
fails with
[UnexpectedValueException]
...
0
votes
1answer
27 views
Should I create a composer umbrella package?
For our custom CMS we have extracted everything out to different modules, this includes everything from the user system, the roles manager, the page editor, the theme system etc.
Several of these are ...
0
votes
1answer
67 views
Composer packages, autoloading non-class based files
When I was digging into the source of a Composer package on github I noticed that there were php files that matched namespace names but were preceded with an underscore. Puzzled I pulled the package ...
0
votes
1answer
41 views
How to include paths to PHAR archives in the open-basedir directive?
I'm trying to use composer on my local development machine, and it always fails when trying to copy something from the PHAR archive:
[ErrorException]
copy(): open_basedir restriction in effect. ...
1
vote
1answer
271 views
Laravel 4 Artisan not working at all
Just playing with Laravel 4 for the first time after using version 3 for a few projects but can't seem to get Artisan to work at all. I've done a bunch of searching and followed the troubleshooting ...
0
votes
0answers
21 views
Split composer package locations?
We are wanting to create a composer installer for packages for our custom cms.
For this we are wanting to have two types of packages.
our-cms-package
These are generic packages developed by anyone ...
1
vote
2answers
35 views
How to preserve modifications in a composer library for future private projects?
I have made many modifications and fixes to a composer library that gets it's data from github , and it does have a dependency.
How can I preserve them easily while being able to get updates from ...
-1
votes
0answers
44 views
Error when updating Symfony components
I am using Composer to update Symfony component. I activated OpenSSL PHP extension to have no problem with HTTPS. Anyway, when I launch:
php composer.phar update
there is an attempt to remove twig ...
0
votes
2answers
23 views
Is there risk of unavailable sources in composer-based project?
When putting together a PHP project with composer, on installation / deployment, composer would fetch the dependencies usually from their original sources.
This could lead to problems when deploying, ...
0
votes
1answer
45 views
What's a “dist” Installation Location in PHP Composer?
Looking at the help for PHP Composer's install command, I see the following two options
$ composer help install
Options:
--prefer-source Forces installation from package sources when ...
3
votes
2answers
117 views
Where do PHP Composer Packages Come From?
When I run
$ composer.phar install
where do the packages that get installed come from?
I understand that Packagist is the default repository for PHP packages, and that lacking a different package ...
0
votes
1answer
63 views
composer or PHP not working
i'm trying install composer package
and i'm always getting the error
[Composer\Downloader\TransportException]
The ...
2
votes
1answer
52 views
Loaded class is from the wrong directory
I'm having a really really weird bug.
I have two vhosts on one machine: staging and production.
They are located in /var/www/staging/ and /var/www/production/. I deploy my Symfony2 project via ...
0
votes
1answer
35 views
PHP Composer permissions on packages
We have a server running Windows Server 2012 on AWS. We use composer to manage packages, and run the composer [install/update] commands on the main Administrator account. We run our scripts as a web ...
1
vote
1answer
22 views
Sharing composer dependencies
I'm working on a project that you can install extensions on, i.e., you install the core program and then you can download and add third-party extensions to it.
If there are two separate extensions ...
0
votes
0answers
74 views
Unable to run PHPUnit (Installed locally with composer) on shared hosting (hostgator)
I'm attempting to use composer for the first time and am having some difficulty getting phpunit setup in my shared hosting envrionment. An old version of phpunit is available in /usr/local/bin. ...
0
votes
1answer
51 views
Composer check local repository instead online repository like Maven
how to get composer http://getcomposer.org to work like maven in java. Instead of getting repository online, it can get from local repository. So, we don't have to download again.
1
vote
1answer
414 views
Composer\Downloader\TransportException by composer.phar self-update in a Zend Framework 2 application
I'm trying to update the Zend Framework 2 library in a project and get an exception:
use@machine:/path/to/project# php composer.phar self-update
[Composer\Downloader\TransportException] ...
1
vote
1answer
90 views
having trouble installing Laravel4 dependency with composer
I tried to install laravel4 according to the instruction in https://github.com/brunogaspar/laravel4-starter-kit.
After Downloading section I tried to do section 2 which contain:
cd your-folder
...
0
votes
0answers
61 views
Paypal REST SDK error_log(../PayPal.log)
I'm currently trying to use the Paypal PHP REST API sample. Issue is, no matter what I do, I get these obnoxious errors on any of the sample scripts:
This one a multiple amount of times:
Warning: ...
0
votes
1answer
38 views
Fatal error: Interface 'Metadata\AdvancedMetadataFactoryInterface' not found
I'm getting the following fatal error when trying to update my vendors with composer.phar:
$ php bin/composer.phar update
Loading composer repositories with package information
Updating dependencies ...
0
votes
0answers
22 views
Differences between locally and globally installation in ComposerPHP
What are the differences between locally and globally installation in ComposerPHP?
Is locally installation effect only for specific folder?
3
votes
2answers
143 views
Error when I try run PHPUnit from PhpStorm
I have little problem when I'm trying to run PHPUnit test in IDE PhpStorm.
I use composer file which looks:
{
"require": {
"phpunit/phpunit": "3.7.19"
}
}
Now when I run test I ...
1
vote
0answers
71 views
Use Composer without ssh access to server
Is it possible to run composer on a cheap webspace that can't be accessed using ssh, only ftp?
Running system('php composer.phar install'); should work in theory - is that the recommended method?
7
votes
1answer
698 views
Can I Install Laravel 4 without using Composer?
I'd like to know if I can install or use the Laravel 4 PHP framework on any webserver without using Composer (PHP package/dependency manager) every time?
I am learning PHP and frameworks and I am ...
2
votes
1answer
46 views
Is composer update atomic?
Short story: Can I run composer update on a running site without having to worry about which dependencies are updated first?
Longer story: I'm trying to figure out if the actual update process with ...
0
votes
3answers
382 views
laravel 4 install failure
I have been trying to get laravel installed with no success.
I have been following what seems to be the usual recipe
git clone -b develop git://github.com/laravel/laravel.git myapp
cd myapp
curl -sS ...
0
votes
1answer
231 views
php composer.phar update failed - A typo in the package name
I have created a new Symfony 2.1 project and added a custom package downloaded by a SVN repo.
Now I'm tryng to upgrade the project to Symfony 2.2, but anytime I try to execute the command php ...
1
vote
0answers
98 views
Composer / SVN Repository sync
I've problem in configuring either satis or composer. What I've managed to do so far:
1: I've created a SVN repository called "common". There are several tags (1.0, 1.1) - each tag has its own ...
0
votes
2answers
88 views
Load and call external library at Kohana
I can not figure out how to include and call external library at Kohana.
I am using Kohana, by using composer I have loaded tmhOAuth library to vendor folder. Composer said - autoloader file was ...
2
votes
1answer
83 views
Generating a PHAR for a simple application
I'm experimenting in building CLI tools using the Symfony2 console library. I've got something basic working and now I want to package it as a phar. I've read a few examples but the ones I've seen are ...
0
votes
2answers
59 views
Load php.ini to terminal
I'm using Git Bash terminal, php 5.4.10, OpenServer (wamp), windows 7
I am trying to load some library by Composer, but I can not because it says:
Kinda weird because curl is working at php
...
0
votes
2answers
75 views
How to require a specific file of a project using Composer?
I have a composer.json file like this one:
{
"require": {
"components/jquery": "*",
"ajbdev/requirejs": "dev-master"
}
}
But I'd like get just the ...
0
votes
0answers
78 views
How to manually prune and restart php-resque workers
Very frequently php-Resque workers will be stuck on a job for days, and eventually all the workers gets stuck and the site stops working.The php-resque library was installed using Composer.
Question: ...
0
votes
1answer
36 views
Get filesystem path of installed composer package
How can get filesystem path of composer package?
composer.json example:
`{
"require" : {
"codeception/codeception" : "@stable",
"willdurand/geocoder": "*"
}
}
example:
...


