-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
61 lines (61 loc) · 1.47 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
{
"name": "oanhnn/laravel-pricing-plans",
"type": "library",
"description": "A package provide pricing plans for Laravel.",
"keywords": [
"plans",
"laravel",
"subscriptions",
"pricing"
],
"license": "MIT",
"homepage": "https://github.com/oanhnn/laravel-pricing-plans",
"support": {
"issues": "https://github.com/oanhnn/laravel-pricing-plans/issues",
"source": "https://github.com/oanhnn/laravel-pricing-plans"
},
"authors": [
{
"name": "Oanh Nguyen",
"email": "oanhnn.bk@gmail.com"
}
],
"autoload": {
"psr-4": {
"Laravel\\PricingPlans\\": "src/"
}
},
"require": {
"php": ">=7.0",
"illuminate/database": "~5.4",
"illuminate/support": "~5.4",
"nesbot/carbon": "~1.21"
},
"require-dev": {
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^0.9",
"orchestra/database": "^3.4",
"orchestra/testbench": "^3.4",
"phpunit/phpunit": "~6.1|~7.0",
"squizlabs/php_codesniffer": "^3.0"
},
"scripts": {
"phpunit": "php vendor/phpunit/phpunit/phpunit --coverage-html build/coverage",
"phpcs": "php vendor/squizlabs/php_codesniffer/bin/phpcs",
"phpcbf": "php vendor/squizlabs/php_codesniffer/bin/phpcbf"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"laravel": {
"providers": [
"Laravel\\PricingPlans\\PricingPlansServiceProvider"
],
"aliases": {
}
}
}
}