-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (68 loc) · 1.69 KB
/
composer.json
File metadata and controls
69 lines (68 loc) · 1.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "igniphp/stilus",
"description": "",
"keywords": [],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Dawid <krac> Kraczkowski",
"email": "dawid.kraczkowski@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"igniphp/framework": "^2.0",
"igniphp/storage": "^0.6.0",
"igniphp/validation": "^1.1.0",
"symfony/yaml": "^4.1",
"zendframework/zend-mail": "^2.10",
"zendframework/zend-crypt": "^3.3",
"league/flysystem": "^1.0",
"zircote/swagger-php": "^3.0"
},
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [],
"migrate": [
"Stilus\\Kernel\\Migration\\MigrationCommand::synchronize"
],
"ci": [
"composer validate --no-check-all --strict",
"@phpcs",
"@test-coverage"
],
"start": "php src/Stilus.php",
"stop": "kill $(cat ./data/stilus.pid)",
"phpcs": "phpcs --standard=PSR2 src",
"test": "phpunit",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"scripts-descriptions": {
"phpcs": "Checks that the application code conforms to coding standard",
"test-coverage": "Launches the preconfigured PHPUnit with coverage",
"ci": "Continues integration checks",
"migrate": "Runs migrations, example usage: composer migration 1.0.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.7.0",
"phpunit/php-code-coverage": ">=4.0.0",
"fzaninotto/faker": "^1.8"
},
"autoload": {
"exclude-from-classmap": [
"src/api/Stilus.php"
],
"psr-4": {
"Stilus\\": "src/api/"
}
},
"autoload-dev": {
"psr-4": {
"Stilus\\Tests\\": "tests/api/"
}
},
"config": {
"process-timeout":0
}
}