File tree Expand file tree Collapse file tree 3 files changed +16
-8
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +16
-8
lines changed
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ use Symfony\Framework\UniversalClassLoader;
7
7
$loader = new UniversalClassLoader();
8
8
$loader->registerNamespaces(array(
9
9
'Symfony' => __DIR__.'/src',
10
- 'Doctrine\\Common' => __DIR__.'/vendor/doctrine/lib/vendor/doctrine -common/lib',
10
+ 'Doctrine\\Common' => __DIR__.'/vendor/doctrine-common/lib',
11
11
'Doctrine\\DBAL\\Migrations' => __DIR__.'/vendor/doctrine-migrations/lib',
12
- 'Doctrine\\DBAL' => __DIR__.'/vendor/doctrine/lib/vendor/doctrine -dbal/lib',
12
+ 'Doctrine\\DBAL' => __DIR__.'/vendor/doctrine-dbal/lib',
13
13
'Doctrine' => __DIR__.'/vendor/doctrine/lib',
14
14
'Zend' => __DIR__.'/vendor/zend/library',
15
15
));
Original file line number Diff line number Diff line change 9
9
10
10
cd vendor
11
11
12
- # Doctrine
12
+ # Doctrine ORM
13
13
git clone git://github.com/doctrine/doctrine2.git doctrine
14
- cd doctrine
15
- git submodule init
16
- git submodule update
17
- cd ..
14
+
15
+ # Doctrine DBAL
16
+ git clone git://github.com/doctrine/dbal.git doctrine-dbal
17
+
18
+ # Doctrine Common
19
+ git clone git://github.com/doctrine/common.git doctrine-common
18
20
19
21
# Doctrine migrations
20
22
git clone git://github.com/doctrine/migrations.git doctrine-migrations
Original file line number Diff line number Diff line change 2
2
3
3
CURRENT=` pwd` /vendor
4
4
5
- # Doctrine
5
+ # Doctrine ORM
6
6
cd $CURRENT /doctrine && git pull
7
7
8
+ # Doctrine DBAL
9
+ cd $CURRENT /doctrine-dbal && git pull
10
+
11
+ # Doctrine common
12
+ cd $CURRENT /doctrine-common && git pull
13
+
8
14
# Doctrine migrations
9
15
cd $CURRENT /doctrine-migrations && git pull
10
16
You can’t perform that action at this time.
0 commit comments