Tagged Questions
0
votes
0answers
43 views
Using Handlebars.js templating in Silex project?
How could I use the Handlebars.js templating system in a Silex project, with Composer for the dependency manager?
0
votes
1answer
206 views
Silex custom class structure and loading
I'm building an app using Silex (the micro-framework).
As my app are growing in size and the need of using the same code in several routes rises, I want to organise everything a little more..
My ...
0
votes
1answer
296 views
silex/silex 1.0.*@dev -> no matching package found
If I create an empty folder and put composer.json there:
{
"require": {
"silex/silex": "1.0.*@dev"
}
}
and than run composer install - it works fine, microframework silex and all ...
0
votes
1answer
89 views
Using the object Silex/Application into a Symfony2 project
I need to use a thirdy part API into a Symfony2 app, wich is using composer to manage dependeces.
This API is built using Silex, so I need to use a Silex/Application object.
I have manage to get ...
2
votes
0answers
614 views
Composer fails to resolve to installable set of packages on using “install” but not “update”
Background: I set up a new project, on my desktop machine, with Silex and set up my composer.json file with the dependencies that I need. I ran "composer.phar install" successfully on the desktop ...
0
votes
1answer
400 views
Views/Resources location for Silex Twig Library
Normally, for a Silex project, I would have top-level directories like:
- app/
- views/
- src/
- vendor/
- web/
Now, some of my classes may call $app['twig']->render(...) and it will pull out ...
1
vote
1answer
238 views
composer require silex.phar
Is it possible to require the latest stable silex.phar from within composer?
I found silex/silex dev-master / 1.0.x-dev on packagist but that seems to be the latest unfolded silex code.