Symfony 2 is hosted at a public GitHub repository: http://github.com/symfony/symfony
Basic information about working with Git can be found in the book Pro Git.
| from sqlalchemy import create_engine | |
| from sqlalchemy.orm import Session | |
| from myapp.models import BaseModel | |
| import pytest | |
| @pytest.fixture(scope='session') | |
| def engine(): | |
| return create_engine('postgresql://localhost/test_database) |
Symfony 2 is hosted at a public GitHub repository: http://github.com/symfony/symfony
Basic information about working with Git can be found in the book Pro Git.
| <?php | |
| // change this with the actual path you cloned sf2 to | |
| $sf2_path = '~/symfony/src'; | |
| use Symfony\Foundation\ClassLoader; | |
| use Symfony\Components\Console\Application; | |
| require_once $sf2_path.'/Symfony/Foundation/ClassLoader.php'; |