Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7980865

Browse filesBrowse files
committed
updated vendors to not rely on Doctrine submodules
1 parent 3e48c0f commit 7980865
Copy full SHA for 7980865

File tree

Expand file treeCollapse file tree

3 files changed

+16
-8
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+16
-8
lines changed

‎autoload.php.dist

Copy file name to clipboardExpand all lines: autoload.php.dist
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ use Symfony\Framework\UniversalClassLoader;
77
$loader = new UniversalClassLoader();
88
$loader->registerNamespaces(array(
99
'Symfony' => __DIR__.'/src',
10-
'Doctrine\\Common' => __DIR__.'/vendor/doctrine/lib/vendor/doctrine-common/lib',
10+
'Doctrine\\Common' => __DIR__.'/vendor/doctrine-common/lib',
1111
'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',
1313
'Doctrine' => __DIR__.'/vendor/doctrine/lib',
1414
'Zend' => __DIR__.'/vendor/zend/library',
1515
));

‎install_vendors.sh

Copy file name to clipboardExpand all lines: install_vendors.sh
+7-5Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ fi
99

1010
cd vendor
1111

12-
# Doctrine
12+
# Doctrine ORM
1313
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
1820

1921
# Doctrine migrations
2022
git clone git://github.com/doctrine/migrations.git doctrine-migrations

‎update_vendors.sh

Copy file name to clipboardExpand all lines: update_vendors.sh
+7-1Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22

33
CURRENT=`pwd`/vendor
44

5-
# Doctrine
5+
# Doctrine ORM
66
cd $CURRENT/doctrine && git pull
77

8+
# Doctrine DBAL
9+
cd $CURRENT/doctrine-dbal && git pull
10+
11+
# Doctrine common
12+
cd $CURRENT/doctrine-common && git pull
13+
814
# Doctrine migrations
915
cd $CURRENT/doctrine-migrations && git pull
1016

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.