-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
64 lines (64 loc) · 2.05 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dersonsena/smallish",
"description": "Smallish",
"license": "MIT",
"authors": [
{
"name": "Kilderson Sena",
"email": "[email protected]"
}
],
"scripts": {
"start": "php -S localhost:8080 -t public_html",
"test": "phpunit --testdox --configuration tests/phpunit.xml",
"test-unit": "phpunit --configuration tests/phpunit.xml --testdox --testsuite unit",
"test-integration": "phpunit --configuration tests/phpunit.xml --testdox --testsuite integration",
"test-filter": "phpunit --configuration tests/phpunit.xml --filter ",
"coverage": "phpunit --configuration tests/phpunit.xml --coverage-html tests/coverage/html",
"coverage-ci": "phpunit --configuration tests/phpunit.xml --coverage-text --colors=never",
"phpcs": "phpcs --standard=phpcs.xml",
"phpcs-fixer": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky yes",
"phpcbf": "phpcbf -w -p",
"psalm": "psalm --show-info=true"
},
"require": {
"php": "^8.0",
"ext-intl": "*",
"ext-json": "*",
"ext-pdo": "*",
"odan/session": "^5.1",
"php-di/php-di": "^6.3",
"ramsey/uuid": "^4.2",
"slim/flash": "^0.4.0",
"slim/psr7": "^1.4",
"slim/slim": "^4.8",
"slim/twig-view": "^3.2",
"vlucas/phpdotenv": "^5.3"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"fakerphp/faker": "^1.16",
"friendsofphp/php-cs-fixer": "^3.1",
"phpunit/phpunit": "^8.5",
"robmorgan/phinx": "^0.12.8",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.10"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"github-protocols": ["https"],
"sort-packages": true,
"process-timeout": 1800
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}