Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/acseo/sqlserverbundle
Provide convertion methods between database values and PHP values
https://github.com/acseo/sqlserverbundle
bundle php symfony symfony-bundle
Last synced: about 2 months ago
JSON representation
Provide convertion methods between database values and PHP values
- Host: GitHub
- URL: https://github.com/acseo/sqlserverbundle
- Owner: acseo
- License: mit
- Created: 2014-10-30T14:34:33.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-04T13:53:12.000Z (about 10 years ago)
- Last Synced: 2024-04-05T23:21:01.795Z (9 months ago)
- Topics: bundle, php, symfony, symfony-bundle
- Language: PHP
- Size: 129 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ACSEO SQLServerBundle
----
This bundle provides datatype convertions for SQLServer with Doctrine ORM and RealState
## Installation
Add the bundle in your composer.json:
```json
{
"require": {
"acseo/sql-server-bundle": "dev-master"
}
}
```Now tell composer to download the bundle by running the command:
```bash
$ php composer.phar update acseo/sql-server-bundle
```
Composer will install the bundle to your project's ```vendor/ACSEO``` directory.Enable the bundle in your project
```php