forked from ahilles107/ninjs-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 982 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
{
"name": "ahs/ninjs-php",
"description": "Serialize ninjs objects representation into json. Deserialize ninjs into objects",
"type": "library",
"require": {
"php": ">=7.1",
"symfony/serializer": "^3.2|^4.1|^5.0",
"symfony/property-access": "^3.2|^4.1|^5.0",
"swp/bridge": "^1.4|^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"AHS\\Ninjs\\": "src/AHS/Ninjs/"
},
"exclude-from-classmap": [ "Tests/*" ]
},
"autoload-dev": {
"psr-4": {
"AHS\\Ninjs\\Tests\\": "Tests/"
}
},
"license": "AGPL-3.0",
"authors": [
{
"name": "Paweł Mikołajczuk",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}