-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 953 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": "apacheborys/location-bundle",
"type": "library",
"description": "Location bundle for manipulate and store places",
"keywords": [],
"homepage": "https://github.com/apacheborys/location-bundle/",
"license": "MIT",
"authors": [
{
"name": "Borys Yermokhin",
"email": "borys_ermokhin@yahoo.com"
}
],
"require": {
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^7.5",
"symfony/cache": "3.4.37"
},
"autoload": {
"psr-4": {
"ApacheBorys\\Location\\": ["src/Common", "src/"]
}
},
"autoload-dev": {
"psr-4": { "ApacheBorys\\Location\\Tests\\": "tests/" }
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}