-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
43 lines (43 loc) · 1.21 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
{
"name": "bowphp/tintin",
"description": "The very small php Template",
"license": "MIT",
"keywords": ["Tintin", "View Engine", "Php Template", "Franck DAKIA", "common mark", "Bow Markdown", "bow-Markdown", "Papac"],
"require": {
"php": "^8.1"
},
"authors": [
{
"name": "Franck DAKIA",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Tintin\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "3.*",
"laravel/framework": "^8.0",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"extra": {
"laravel": {
"providers": [
"Tintin\\Laravel\\TintinServiceProvider"
],
"aliases": {
"Tintin": "Tintin\\Laravel\\Facade\\Tintin"
}
}
},
"scripts": {
"phpcbf": "phpcbf --standard=psr12 --severity=4 --tab-width=4 src tests",
"phpcs": "phpcs --standard=psr12 --severity=4 --tab-width=4 src",
"test": "phpunit --configuration phpunit.dist.xml"
},
"minimum-stability": "dev",
"prefer-stable": true
}