-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.6 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "rollun-com/rollun-dic",
"description": "InsideConstruct",
"minimum-stability": "stable",
"license": "proprietary",
"type": "lib",
"authors": [
{
"name": "avz-cmf",
"email": "email@example.com"
},
{
"name": "victorynox",
"email": "it.proffesor02@gmail.com"
}
],
"require": {
"php": "^8.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"symfony/dotenv": "^6.0.3",
"laminas/laminas-config-aggregator": "^1.7",
"laminas/laminas-http": "^2.15.1",
"laminas/laminas-servicemanager": "^3.10.0",
"laminas/laminas-db": "^2.13.4",
"laminas/laminas-diactoros": "^2.8.0",
"laminas/laminas-stratigility": "^3.5.0",
"mezzio/mezzio": "^3.9"
},
"autoload": {
"psr-4": {
"rollun\\dic\\": "src/Dic/src"
}
},
"autoload-dev": {
"psr-4": {
"rollun\\test\\dic\\": "test/Dic"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"development-disable": "zf-development-mode disable",
"development-enable": "zf-development-mode enable",
"development-status": "zf-development-mode status",
"check": [
"@cs-check",
"@test"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8080 -t public public/index.php",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v",
"lib": "rollun\\installer\\Command::command"
}
}