generated from likesistemas/composer-empty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.28 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
{
"name": "likesistemas/codeception-phinx-module",
"type": "library",
"description": "Integração com phinx usando codeception.",
"repositories": [
{"type": "composer", "url": "https://composer.likesistemas.com.br/"}
],
"require": {
"php": ">=5.6",
"robmorgan/phinx": ">=0.10"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^9.0",
"codeception/codeception": "^4.0 || ^5.0",
"codeception/module-phpbrowser": "^1.0 || ^2.0",
"codeception/module-asserts": "^1.3 || ^2.0",
"codeception/module-db": "^1.1 || ^2.0 || ^3.0"
},
"autoload": {
"psr-4": {
"Like\\Codeception\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": ["tests/", "tests/Support/"]
}
},
"authors": [
{
"name": "Like Sistemas",
"email": "[email protected]",
"homepage": "https://www.likesistemas.com.br/"
}
],
"scripts": {
"fix": "php-cs-fixer fix --show-progress=dots",
"fix:ci": "php-cs-fixer fix --dry-run --stop-on-violation --show-progress=dots",
"test": [
"codecept build",
"codecept run"
],
"analyse": "phpstan analyse"
}
}