-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "magebitcom/ucp-php-spec",
"description": "Universal Commerce Protocol specification for PHP",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Magebit\\UcpSpec\\Api\\": "generated/Magebit/UcpSpec/Api/",
"Magebit\\UcpSpec\\Data\\": "generated/Magebit/UcpSpec/Data/",
"Magebit\\UcpSpec\\Runtime\\": "runtime/"
}
},
"autoload-dev": {
"psr-4": {
"Magebit\\UcpSpecGenerator\\": "src/",
"Magebit\\UcpSpecGenerator\\Test\\": "tests/"
}
},
"scripts": {
"generate": "php generate.php --clean",
"check": "php generate.php --check",
"test": "phpunit"
},
"authors": [
{
"name": "Magebit",
"email": "info@magebit.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"nette/php-generator": "^4.2",
"phpunit/phpunit": "^10.5"
},
"extra": {
"ucp": {
"spec-target": "2026-04-08",
"upstream": {
"repository": "https://github.com/Universal-Commerce-Protocol/ucp",
"ref": "refs/tags/v2026-04-08",
"commit": "a2d8bf0b8f5a6fc790f677899c2c7da0684fe33d"
}
}
}
}