-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.17 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.17 KB
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
{
"name": "peroks/model",
"description": "Models: Classes with built-in data validation",
"license": "MIT",
"type": "library",
"keywords": [
"json",
"data-validation",
"rest-api",
"arrayobject"
],
"authors": [
{
"name": "Per Egil Roksvaag",
"homepage": "https://github.com/peroks"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.45.0",
"wp-coding-standards/wpcs": "^3.1.0"
},
"suggest": {
"peroks/model-store": "Permanent data store for models"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Peroks\\Model\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"platform": {
"php": "8.0"
}
},
"scripts": {
"build-deploy": "@composer install --no-dev",
"build-install": "@composer install",
"build-lock": "@composer update --with-all-dependencies --no-install",
"build-normalize": "@composer normalize",
"build-update": "@composer update --with-all-dependencies",
"clean": "rm -rf ./vendor",
"format": "./vendor/bin/phpcbf ./src",
"lint": "./vendor/bin/phpcs ./src"
}
}