-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
51 lines (51 loc) · 1.43 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
{
"name": "json-mapper/laravel-package",
"description": "The JsonMapper package for Laravel",
"keywords": [
"json",
"mapper",
"JsonMapper",
"middleware",
"laravel"
],
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"json-mapper/json-mapper": "^2.3",
"php": "^7.2 || ^8.0",
"illuminate/support": "^5.5|^6|^7|^8|^9|^10 || ^11.0"
},
"autoload": {
"psr-4": {
"JsonMapper\\LaravelPackage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JsonMapper\\LaravelPackage\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs --standard=PSR12 src tests",
"phpcbf": "phpcbf --standard=PSR12 src tests",
"phpstan": "phpstan analyse",
"unit-tests": "phpunit --testsuite unit --testdox --coverage-clover=build/logs/clover-unit-tests.xml"
},
"extra": {
"laravel": {
"providers": [
"JsonMapper\\LaravelPackage\\ServiceProvider"
]
}
},
"require-dev": {
"ext-json": "*",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.19 || ^1.0.0",
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.5",
"orchestra/testbench": "^5.3|^6.0 || ^9.0",
"php-coveralls/php-coveralls": "^2.4",
"guzzlehttp/guzzle": "^6.5 || ^7.0"
}
}