forked from csanquer/PdoServiceProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.39 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.39 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "cristianp6/pdo-service-provider",
"description": "A PDO database service provider for Silex with the ability to nest transactions",
"keywords": [
"silex", "database", "pdo", "service provider", "transactions"
],
"license": "MIT",
"authors": [
{
"name": "Charles Sanquer",
"email": "charles.sanquer@gmail.com"
},
{
"name": "Cristian Pascottini",
"email": "cristianp6@gmail.com"
}
],
"repositories": [{
"type": "package",
"package": {
"name": "cristianp6/pdo-service-provider",
"version": "0.8.0",
"source": {
"url": "https://github.com/cristianp6/PdoServiceProvider.git",
"type": "git",
"reference": "0.8.0"
}
}
}],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"silex/silex": "~1.1",
"symfony/options-resolver": "~2.3"
},
"require-dev": {
"phpunit/phpunit": "~4.1"
},
"autoload": {
"psr-4": {
"Csanquer\\Silex\\PdoServiceProvider\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Csanquer\\Silex\\PdoServiceProvider\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.8.x-dev"
}
}
}