0
votes
1answer
66 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', ...
1
vote
1answer
255 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 ...
1
vote
2answers
34 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
vote
4answers
114 views

Getting started with chef, and running composer install on deploy

We're looking to deploy a few Laravel4 based PHP apps on amazon with OpsWorks, this requires a few things: Grab code from git Download composer.phar from getcomposer.com Run php composer.phar ...
7
votes
1answer
660 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 ...
0
votes
1answer
472 views

Load css/js files in Laravel 4 with Composer?

I'm working on creating a new project in Laravel 4. I have a tiny bit of experience in Laravel 3, in which I got used to the assets system. I'm now having a lot of trouble figuring out how to load CSS ...
0
votes
3answers
369 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
65 views

phmagick class not found on laravel 4

After installing phmagick using composer I'm getting a class not found error. I think it's because of how the Action classes are being loaded, but is there a fix for it?
0
votes
2answers
155 views

composer to use newer version of php

How do i get composer to use a newer version of php i have installed? I have downloaded and am using php 5.4 in all my local servers but when i download composer it points to my mac's default ...
0
votes
3answers
475 views

Setup laravel 4

I'm new to laravel and I'm trying to setup Laravel 4, using (bit outdated) http://net.tutsplus.com/tutorials/php/how-to-setup-laravel-4/ I have setup composer globally. When I run: $ git clone ...
0
votes
3answers
290 views

Laravel 4 IoC Container - Setting Up & Using Providers

I am trying to use http://geotools-php.org/ in Laravel 4 (L4). I followed the instructions for downloading through Composer (and verified geotools existance in the vendors folder). I added ...
1
vote
1answer
378 views

Installing Laravel 4 Powerpack breaks code in SessionServiceProvider?

After I use composer update with L4 powerpack requirement in composer.json, it fetches it with no problems. Then I update providers and aliases arrays in app.php, but when I use HTML::script(...) I ...
2
votes
1answer
92 views

Composer suggested approach for internal packages

Some background first Our company, a small startup with only four developers, is starting the refactoring of our products into reusable modules to simplify the development process, increase ...
0
votes
1answer
84 views

Application theming and composer? [closed]

I am using the Laravel 4 (beta) framework my new new application which is designed as an open source download and run this install script (e.g. blog, timetracker etc) type application. I am wanting ...
2
votes
1answer
631 views

How to deploy Laravel 4 Apps on Heroku?

I know that Heroku supports many different environments in the Cedar stack including PHP. The tipical folder structure of a Laravel 4 app is the following: app/ bootstrap/ public/ packages/ ...
0
votes
1answer
90 views

Storing composer packages under development in the vendor directory, how to set up autoloader?

I am developing a package and I want to store it in the vendor directory before I publish it. So, The path to say Basset's service provider once it is installed via composer is ...
0
votes
2answers
325 views

Composer package folder structure created with Laravel 4's “bench” command

So, I have created a composer package for Laravel 4 using php artisan bench --composer This is all working great, But, I was looking through the Basset Packages vendor folder, and I noticed that our ...
3
votes
1answer
336 views

Some Laravel 4 PSR-0 issues?

I have noticed that Laravel 4 is using some of the PSR standards. I have recently installed the SensioLabs tool php-cs-fixer that detects and fixes most of the issues when we want to follow the PHP ...
-1
votes
3answers
1k views

Laravel 4: How to install Meido Form and HTML ports from Laravel 3

I wanted to use Form and HTML classes in Laravel 4, so I went to Meido's GitHub pages for the HTML and Form ports. I followed the instructions to the letter. I added these lines to my app's ...