forked from thinktomorrow/squanto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.47 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.47 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
55
56
{
"name": "thinktomorrow/squanto",
"type": "library",
"description": "Text manager for static laravel translations during and after development",
"keywords": [
"thinktomorrow",
"squanto"
],
"homepage": "https://github.com/thinktomorrow/squanto",
"license": "MIT",
"authors": [
{
"name": "Ben Cavens",
"email": "cavensben@gmail.com",
"homepage": "http://thinktomorrow.be",
"role": "Developer"
}
],
"require": {
"php": "~5.6|~7.0",
"dimsav/laravel-translatable": "~5.4|~6.0|7.*",
"illuminate/contracts": "5.1.*|5.2.*|5.3.*|5.4.*",
"illuminate/database": "5.1.*|5.2.*|5.3.*|5.4.*",
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*",
"league/flysystem": "^1.0"
},
"require-dev": {
"mockery/mockery": "^0.9.7",
"orchestra/testbench": "^3.2",
"phpunit/phpunit": "5.*",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"Thinktomorrow\\Squanto\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Thinktomorrow\\Squanto\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"format": "phpcbf --standard=psr2 src/"
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"config": {
"sort-packages": true
}
}