-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.71 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 loc) · 1.71 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
{
"name": "susina/sami",
"type": "application",
"description": "Sami, an API documentation generator",
"keywords": ["phpdoc"],
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Cristiano Cinotti",
"email": "cristianocinotti@gmail.com"
}
],
"require": {
"php": "^8.0",
"pimple/pimple": "^3.0",
"twig/twig": "^3.0",
"nikic/php-parser": "^4.0",
"michelf/php-markdown": "^1.3",
"symfony/console": "^5.0",
"symfony/finder": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/yaml": "^5.0",
"symfony/process": "^5.0",
"gossi/docblock": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"psalm/phar": "^4.5"
},
"autoload": {
"psr-4": { "Susina\\Sami\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Susina\\Sami\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"prefer-stable": true,
"bin": ["sami.php"],
"scripts": {
"analytics": "vendor/bin/psalm.phar",
"coverage:html": "@test --coverage-html coverage/",
"coverage:clover": "@test --coverage-clover clover.xml",
"test": "phpunit --colors=always"
},
"scripts-descriptions": {
"analytics": "Run static analysis tool",
"coverage:html": "Create a code coverage report in html format, into the `coverage/` directory",
"coverage:clover": "Create a code coverage report in xml format, into `clover.xml` file",
"test": "Run all tests"
}
}