forked from placetopay-org/self-declarations-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.01 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
{
"name": "freddiegar/base",
"description": "Manage layers in Laravel",
"type": "library",
"require": {
"ext-json": "*",
"php": ">=7.1",
"illuminate/support": "5.5.*|5.6.*|5.7.*",
"illuminate/http": "5.5.*|5.6.*|5.7.*",
"illuminate/cache": "5.5.*|5.6.*|5.7.*",
"illuminate/database": "5.5.*|5.6.*|5.7.*",
"illuminate/translation": "5.5.*|5.6.*|5.7.*",
"illuminate/validation": "5.5.*|5.6.*|5.7.*"
},
"require-dev": {
"phpstan/phpstan": "~0.9",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "~3.2"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"FreddieGar\\Base\\": "src/"
}
},
"scripts": {
"phpcs": "phpcs --standard=PSR2 --ignore=src/Commands/create.php src/",
"phpstan": "phpstan analyse -l 0 -c phpstan.neon src/",
"phpunit": "phpunit --bootstrap vendor/autoload.php --testdox tests/",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
},
"prefer-stable": true,
"license": "MIT"
}