forked from NYHTC/FMLaravel
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 866 Bytes
/
composer.json
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
{
"name": "tschiemer/fm-laravel",
"description": "Laravel friendly wrapper for the FileMaker API for PHP",
"keywords": [
"filemaker",
"laravel"
],
"authors": [
{
"name": "Andrew Morgan",
"email": "[email protected]"
},
{
"name": "Philip Tschiemer",
"homepage": "http://filou.se"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.2.*",
"illuminate/database": "5.2.*",
"andrewmile/fm-api": "0.1.2"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"squizlabs/php_codesniffer": "^2.6",
"phpunit/phpunit": "^5.3"
},
"autoload": {
"psr-0": {
"": "src/"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"test": [
"@test-phpunit",
"@test-psr2"
],
"test-psr2": "phpcs --standard=PSR2 src",
"test-phpunit": "phpunit tests"
}
}