Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
c40505a9
Commit
c40505a9
authored
May 25, 2010
by
Jonathan H. Wage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up after move.
parent
afbddfb7
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
53 deletions
+1
-53
COPYRIGHT
COPYRIGHT
+0
-30
UPGRADE_TO_2_0
UPGRADE_TO_2_0
+0
-22
build.xml
build.xml
+1
-1
NativePhpunitTask.php
tests/NativePhpunitTask.php
+0
-0
No files found.
COPYRIGHT
deleted
100644 → 0
View file @
afbddfb7
Copyrights
----------
Doctrine
--------
Doctrine is a Object Relational Mapper built from scratch with PHP5. It contains a few ports of other popular PHP classes/libraries.
Url: http://www.doctrine-project.org
Copyright: 2005-2009 Konsta Vesterinen
License: LGPL - see LICENSE file
Zend Framework
--------------
Doctrine contains ports of a few Zend components and has borrowed concepts and ideas from the Zend Framework project.
Url: http://framework.zend.com
Copyright: Copyright © 2006-2009 by Zend Technologies, All rights reserved.
License: New BSD License
eZ Components
------------
Doctrine SchemaTool, Platforms and SchemaManagers borrow ideas and concepts
from ezcDatabaseSchema.
Url: http://www.ezcomponents.org
License: New BSD License
Copyright: Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
\ No newline at end of file
UPGRADE_TO_2_0
deleted
100644 → 0
View file @
afbddfb7
# Upgrade from 2.0-ALPHA4 to 2.0-BETA1
## Console migrated to Symfony Console
The Doctrine CLI has been replaced by Symfony Console Configuration
Instead of having to specify:
[php]
$cliConfig = new CliConfiguration();
$cliConfig->setAttribute('em', $entityManager);
You now have to configure the script like:
[php]
$helperSet = new \Symfony\Components\Console\Helper\HelperSet(array(
'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()),
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em)
));
build.xml
View file @
c40505a9
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
<import
file=
"build-dependencies.xml"
/>
<import
file=
"build-dependencies.xml"
/>
<taskdef
classname=
"phing.tasks.ext.d51PearPkg2Task"
name=
"d51pearpkg2"
/>
<taskdef
classname=
"phing.tasks.ext.d51PearPkg2Task"
name=
"d51pearpkg2"
/>
<taskdef
classname=
"NativePhpunitTask"
classpath=
"./t
ool
s/"
name=
"nativephpunit"
/>
<taskdef
classname=
"NativePhpunitTask"
classpath=
"./t
est
s/"
name=
"nativephpunit"
/>
<property
file=
"build.properties"
/>
<property
file=
"build.properties"
/>
...
...
t
ool
s/NativePhpunitTask.php
→
t
est
s/NativePhpunitTask.php
View file @
c40505a9
File moved
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