-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
48 lines (41 loc) · 1018 Bytes
/
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
{
"name": "wisembly/totem",
"license": "MIT",
"description": "Changeset calculator between data states",
"keywords": ["changeset"],
"authors": [
{
"name": "Baptiste Clavié",
"email": "[email protected]",
"homepage": "http://baptiste.xn--clavi-fsa.net/",
"role": "Lead Developper"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Wisembly/Totem/issues",
"source": "https://github.com/Wisembly/Totem"
},
"autoload": {
"psr-4": {
"Totem\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Totem\\": ["test/"]
}
},
"require": {
"php": "^7.1 || ^7.3 || ^8.0",
"symfony/property-access": "^2.5 || ^3.0 || ^4.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.5.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}