forked from rmasters/DoctrineMigrationsServiceProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 817 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "rmasters/doctrine-migrations-service-provider",
"description": "Pimple service provider for Doctrine migrations",
"license": "MIT",
"authors": [
{
"name": "Ross Masters",
"email": "ross@rossmasters.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/rmasters/ConsoleServiceProvider"
}
],
"minimum-stability": "dev",
"require": {
"pimple/pimple": "~3.0",
"doctrine/migrations": "dev-master",
"knplabs/console-service-provider": "dev-pimple-3 as dev-master",
"dflydev/doctrine-orm-service-provider": "~2.0"
},
"autoload": {
"psr-4": {
"Rossible\\Provider\\DoctrineMigrationsProvider\\": "src/"
}
}
}