-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.16 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": "m50/simple",
"description": "The documentation verification tool to make sure that nothing is considered easy or simple.",
"keywords": ["documentation", "cd", "cicd", "verification", "simple"],
"license": "MIT",
"homepage": "https://github.com/m50/simple",
"authors": [
{
"name": "Marisa Clardy",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"symfony/console": "^5.0",
"symfony/finder": "^5.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.4",
"phpunit/phpunit": "^9",
"symfony/var-dumper": "^5.0",
"vimeo/psalm": "^4.4"
},
"autoload": {
"psr-4": {
"NotSoSimple\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NotSoSimple\\Tests\\": "tests/"
}
},
"bin": "simple",
"scripts": {
"test": "php ./vendor/bin/phpunit",
"typecheck": "php ./vendor/bin/psalm"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}