-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
API Implement Lookup class, convert major branches to minors, "smart"…
… namespace lookups
- Loading branch information
1 parent
82c25b5
commit b544b70
Showing
11 changed files
with
1,778 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/src/ | ||
/assets/ | ||
/htdocs/2.4/ | ||
/htdocs/master/ | ||
/htdocs/3.*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
language: php | ||
|
||
php: | ||
- 5.6 | ||
- 7.1 | ||
|
||
before_script: | ||
- composer install --dev | ||
|
||
script: | ||
- vendor/bin/phpunit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,22 @@ | |
} | ||
], | ||
"require": { | ||
"apigen/apigen": "2.8.x-dev" | ||
"apigen/apigen": "2.8.x-dev", | ||
"symfony/yaml": "^3.3" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:silverstripe-labs/ApiGen.git" | ||
} | ||
] | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:silverstripe-labs/ApiGen.git" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"SilverStripe\\ApiDocs\\": "src/", | ||
"SilverStripe\\ApiDocs\\Test\\": "tests/" | ||
} | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7" | ||
} | ||
} |
Oops, something went wrong.