forked from silverorange/conversion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 982 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 982 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
30
31
32
33
34
35
36
37
{
"name": "silverorange/conversion",
"description": "And God sayeth, 'You shall have no other gods before me.'",
"type": "library",
"keywords": [ "mdb2", "schema", "migration", "database" ],
"homepage": "https://github.com/silverorange/conversion",
"license": "LGPL-2.1",
"authors": [
{
"name": "Michael Gauthier",
"email": "mike@silverorange.com"
},
{
"name": "Nathan Frederikson",
"email": "nathan@silverorange.com"
},
{
"name": "Nick Burka",
"email": "nick@silverorange.com"
}
],
"require": {
"php": ">=5.2.3",
"silverorange/swat": "^3.0.0"
},
"require-dev": {
"silverorange/coding-standard": "^1.0.0"
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"post-install-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src",
"post-update-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src"
},
"autoload": {
"classmap": [ "Conversion/" ]
}
}