-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 927 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 927 Bytes
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
{
"name": "igniphp/stilus",
"version": "0.0.1",
"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.4.2",
"igniphp/validation": "^1.1.0",
"symfony/yaml": "^4.1",
"zendframework/zend-mail": "^2.10",
"zendframework/zend-crypt": "^3.3"
},
"scripts": {
"start": "php src/api/Stilus.php",
"stop": "kill $(cat ./data/stilus.pid)"
},
"require-dev": {
"phpunit/phpunit": ">=5.7.0",
"mockery/mockery": ">=0.9.4",
"phpunit/php-code-coverage": ">=4.0.0"
},
"autoload": {
"psr-4": {
"Stilus\\": "src/api/"
}
},
"autoload-dev": {
"psr-4": {
"Stilus\\Tests\\": "tests/api/"
}
},
"config": {
"process-timeout":0
}
}