-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.25 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
{
"name": "james-harper/data-contracts",
"description": "Creating shareable data contracts based on JSON schema",
"type": "library",
"require": {
"php": "^7.4|^8.0",
"illuminate/cache": "^8.12",
"illuminate/container": "^8.12",
"illuminate/database": "^8.12",
"illuminate/filesystem": "^8.12",
"illuminate/http": "^8.12",
"opis/json-schema": "^1.0.19",
"psr/simple-cache": "^1.0",
"symfony/console": "^5.2",
"symfony/process": "^5.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"mockery/mockery": "^1.4.2",
"pestphp/pest": "^1.0"
},
"authors": [
{
"name": "James Harper",
"email": "jameswilliamharper@gmail.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"DataContracts\\": "src/",
"DataContracts\\Console\\": "console/"
},
"classmap": [
"src/",
"console/"
]
},
"autoload-dev": {
"psr-4": {
"DataContracts\\Tests\\": "tests/"
},
"classmap": [
"tests/"
]
},
"scripts": {
"test": "vendor/bin/pest",
"lint": [
"vendor/bin/php-cs-fixer fix --dry-run --config=.php_cs -vv"
],
"lint:fix": [
"vendor/bin/php-cs-fixer fix --config=.php_cs -vv"
]
}
}