-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1 KB
/
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
{
"name": "cyruscollier/wp-spark",
"description": "An expressive and elegant object-oriented API for WordPress",
"keywords": ["wordpress", "model", "object-oriented"],
"homepage": "http://github.com/cyruscollier/wp-spark",
"type": "library",
"authors": [
{
"name": "Cyrus Collier",
"email": "[email protected]",
"homepage": "http://www.collierwebdesign.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.cyruscollier.com/"
}
],
"license": "MIT",
"require": {
"php-di/php-di": "^6.0",
"cakephp/chronos": "^1.1",
"tightenco/collect": "^7.0"
},
"require-dev": {
"cyruscollier/wp-test": "dev-master",
"friends-of-phpspec/phpspec-code-coverage": "^4.3"
},
"autoload": {
"psr-4": {
"Spark\\": "src/",
"": "src/Support/Stubs"
},
"files": ["src/functions.php"]
}
}