This repository has been archived by the owner on Nov 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.74 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
65
{
"name": "laramore/types",
"description": "All based instances and interfaces used by Laramore",
"keywords": ["Laramore", "Laravel", "Model", "Automatic", "Auto", "Fields", "Field", "Meta", "Types"],
"license": "MIT",
"config": {
"platform": {
"php": "7.0.8"
}
},
"require": {
"php": ">=7.0.8",
"laramore/base": ">=0.9"
},
"suggest": {
"laramore/laramore": "Laramore\\Types is made in order to work with Laramore"
},
"authors": [
{
"name": "Nastuzzi Samy",
"email": "samy@nastuzzi.fr"
}
],
"autoload": {
"psr-4": {
"Laramore\\": "src/"
}
},
"scripts": {
"test:lint": [
"./vendor/bin/phpcs src",
"./vendor/bin/phpmd src text phpmd.xml"
],
"fix:lint": [
"./vendor/bin/phpcbf src"
],
"test:unit": [
"./vendor/bin/phpunit --bootstrap vendor/autoload.php tests"
],
"test": [
"@composer test:lint",
"@composer test:unit"
]
},
"require-dev": {
"phpmd/phpmd": ">=2.7",
"squizlabs/php_codesniffer": ">=3.5",
"phpstan/phpstan": ">=0.9.2",
"phpunit/phpunit": ">=6.5"
},
"extra": {
"laravel": {
"providers": [
"Laramore\\Providers\\OptionProvider",
"Laramore\\Providers\\TypeProvider",
"Laramore\\Providers\\OperatorProvider"
],
"aliases": {
"Option": "Laramore\\Facades\\Option",
"Type": "Laramore\\Facades\\Type",
"Operator": "Laramore\\Facades\\Operator"
}
}
}
}