Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
Silex
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
Silex
Commits
cb303871
Commit
cb303871
authored
Nov 11, 2013
by
Fabien Potencier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved README to rst
parent
282628dc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
58 deletions
+68
-58
README.md
README.md
+0
-58
README.rst
README.rst
+68
-0
No files found.
README.md
deleted
100644 → 0
View file @
282628dc
Silex, a simple Web Framework
=============================
Silex is a PHP micro-framework to develop websites based on
[
Symfony2
][
1
]
components:
```
php
<?php
require_once
__DIR__
.
'/../vendor/autoload.php'
;
$app
=
new
Silex\Application
();
$app
->
get
(
'/hello/{name}'
,
function
(
$name
)
use
(
$app
)
{
return
'Hello '
.
$app
->
escape
(
$name
);
});
$app
->
run
();
```
Silex works with PHP 5.3.3 or later.
## Installation
The recommended way to install Silex is
[
through
composer](http://getcomposer.org). Just create a
`composer.json`
file and
run the
`php composer.phar install`
command to install it:
{
"require": {
"silex/silex": "~1.1"
}
}
Alternatively, you can download the
[
`silex.zip`
][
2
]
file and extract it.
## More Information
Read the
[
documentation
][
3
]
for more information.
## Tests
To run the test suite, you need
[
composer
](
http://getcomposer.org
)
.
$ php composer.phar install --dev
$ vendor/bin/phpunit
## Community
Check out #silex-php on irc.freenode.net.
## License
Silex is licensed under the MIT license.
[
1
]:
http://symfony.com
[
2
]:
http://silex.sensiolabs.org/download
[
3
]:
http://silex.sensiolabs.org/documentation
README.rst
0 → 100644
View file @
cb303871
Silex, a simple Web Framework
=============================
Silex is a PHP micro-framework to develop websites based on `Symfony2
components`_:
.. code-block:: php
<?php
require_once __DIR__.'/../vendor/autoload.php';
$app = new Silex\Application();
$app->get('/hello/{name}', function ($name) use ($app) {
return 'Hello '.$app->escape($name);
});
$app->run();
Silex works with PHP 5.3.3 or later.
Installation
------------
The recommended way to install Silex is through `Composer`_. Just create a
``composer.json`` file and run the ``php composer.phar install`` command to
install it:
.. code-block:: json
{
"require": {
"silex/silex": "~1.1"
}
}
Alternatively, you can download the `silex.zip`_ file and extract it.
More Information
----------------
Read the `documentation`_ for more information.
Tests
-----
To run the test suite, you need `Composer`_:
.. code-block:: bash
$ php composer.phar install --dev
$ vendor/bin/phpunit
Community
---------
Check out #silex-php on irc.freenode.net.
License
-------
Silex is licensed under the MIT license.
.. _Symfony2 components: http://symfony.com
.. _Composer: http://getcomposer.org
.. _silex.zip: http://silex.sensiolabs.org/download
.. _documentation: http://silex.sensiolabs.org/documentation
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment