forked from contributte/translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 1.77 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "contributte/translation",
"description": "Symfony/Translation integration for Nette Framework.",
"type": "library",
"keywords": ["symfony", "nette", "translation"],
"license": "MIT",
"homepage": "https://github.com/contributte/translation",
"authors": [
{
"name": "Ales Wita"
}
],
"require": {
"php": "^7.1.3",
"latte/latte": "^2.5",
"nette/di": "^3.0",
"nette/finder": "^2.5",
"nette/http": "^3.0",
"nette/neon": "^3.0",
"nette/schema": "^1.0",
"nette/routing": "^3.0",
"nette/utils": "^3.0",
"symfony/translation": "^4.4|^5.0",
"symfony/config": "^4.4|^5.0"
},
"require-dev": {
"nette/application": "^3.0",
"nette/bootstrap": "^3.0",
"nette/database": "^3.0",
"nette/robot-loader": " ^3.0",
"nette/tester": "^2.3.1",
"doctrine/orm": "^2.6",
"tracy/tracy": "^2.6",
"psr/log": "^1.0",
"mockery/mockery": "^1.2",
"ninjify/qa": "^0.8.0",
"ninjify/nunjuck": "^0.3.0"
},
"autoload": {
"psr-4": {
"Contributte\\Translation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.7.x-dev"
}
},
"scripts": {
"tests": [
"tester tests/Tests -s -j 1"
],
"qa": [
"linter src tests",
"codesniffer src tests"
],
"phpstan-install": [
"mkdir -p temp/phpstan",
"composer require -d temp/phpstan phpstan/phpstan:^0.12",
"composer require -d temp/phpstan phpstan/phpstan-deprecation-rules:^0.12",
"composer require -d temp/phpstan phpstan/phpstan-nette:^0.12",
"composer require -d temp/phpstan phpstan/phpstan-strict-rules:^0.12"
],
"phpstan": [
"temp/phpstan/vendor/bin/phpstan analyse -c phpstan.neon"
],
"coverage": [
"tester tests/Tests -s -p phpdbg --coverage ./coverage.xml --coverage-src ./src"
]
}
}