Skip to content

Commit

Permalink
merged branch igorw/composer (PR silexphp#169)
Browse files Browse the repository at this point in the history
Commits
-------

2805a0f [composer] add suggestions for ServiceProviders
768367b [composer] adjust package name and required package versions to latest naming
81bace7 [composer] re-add css-selector, adjust versioning syntax
0f620a2 update composer.json
1c6e443 [composer] bump PHP requirement to 5.3.2
ca2d515 Add composer.json

Discussion
----------

Add composer.json

---------------------------------------------------------------------------

by igorw at 2011/09/22 11:00:53 -0700

Shall I change the version? Are we going to do a release? Will it be 1.0.0? I will leave it at 1.0.0 without tag for now, aka 1.0.0-dev.

---------------------------------------------------------------------------

by igorw at 2011/09/29 00:32:54 -0700

There are still suggestions missing for following packages (because they have no composer.json yet): doctrine/dbal, swiftmailer.
  • Loading branch information
fabpot committed Sep 29, 2011
2 parents e514450 + 2805a0f commit 7798827
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "silex/silex",
"type": "library",
"description": "The PHP micro-framework based on the Symfony2 Components",
"keywords": ["microframework"],
"homepage": "http://silex.sensiolabs.org",
"version": "1.0.0",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Igor Wiedler",
"email": "igor@wiedler.ch"
}
],
"require": {
"php": ">=5.3.2",
"pimple": ">=1.0.0",
"symfony/browser-kit": ">=2.0",
"symfony/css-selector": ">=2.0",
"symfony/dom-crawler": ">=2.0",
"symfony/event-dispatcher": ">=2.0",
"symfony/http-foundation": ">=2.0",
"symfony/http-kernel": ">=2.0",
"symfony/routing": ">=2.0"
},
"suggest": {
"symfony/form": ">=2.0",
"monolog/monolog": ">=1.0.0",
"symfony/translation": ">=2.0",
"symfony/twig-bridge": ">=2.0",
"symfony/validator": ">=2.0",
"twig/twig": ">=1.2.0"
}
}

0 comments on commit 7798827

Please sign in to comment.