-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 907 Bytes
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 907 Bytes
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
{
"name": "takemo101/simple-prop-check",
"description": "Simple Prop Check",
"keywords": [
"php",
"package",
"attribute",
"validation"
],
"authors": [
{
"name": "takemo101",
"email": "takemo101@gmail.com",
"role": "Developer"
}
],
"homepage": "https://github.com/takemo101/simple-prop-check",
"license": "MIT",
"require": {
"php": "^8.1"
},
"autoload": {
"psr-4": {
"Takemo101\\SimplePropCheck\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "test/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"php": "^8.1",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.4"
}
}