-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.04 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "tangible/object",
"description": "A WordPress tool suite for building data-driven interfaces with a clean extensible architecture.",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/TangibleInc/framework"
}
],
"require-dev": {
"phpunit/phpunit": "^9.6.34",
"yoast/phpunit-polyfills": "^2.0.5",
"tangible/framework": "dev-main"
},
"require": {},
"autoload": {
"psr-4": {
"Tangible\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Tangible\\Object\\Tests\\": "./tests/phpunit/"
}
},
"scripts": {
"test": "phpunit",
"setup:integrations": [
"@setup:database-module",
"@setup:tangible-fields"
],
"setup:database-module": "[ -d ../database-module ] || git clone https://github.com/tangibleinc/database-module.git ../database-module",
"setup:tangible-fields": "[ -d ../fields ] || git clone https://github.com/tangibleinc/fields.git ../fields"
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "GPL-2.0-only"
}